目錄
索引创建格式:
视图是数据库中的虚拟表,它存储的不是自己的内容,而是经过select从其他表整合而来的。当其他表的内容改变是,视图内的内容跟着改变。在一定条件下,对视图的更新也将改变源表。
首頁 資料庫 mysql教程 mysql索引与视图_MySQL

mysql索引与视图_MySQL

Jun 01, 2016 pm 01:18 PM
mysql

bitsCN.com

原始表student字段:

mysql> select column_name,data_type    -> from information_schema.columns    -> where table_name = 'student';+-------------+-----------+| column_name | data_type |+-------------+-----------+| stu_id      | int       || stu_name    | varchar   || stu_tel     | int       || stu_score   | int       |+-------------+-----------+4 rows in set (0.01 sec)
登入後複製
表中原始数据:
mysql> select * from student;+--------+----------+---------+-----------+| stu_id | stu_name | stu_tel | stu_score |+--------+----------+---------+-----------+|      1 | a        |     151 |        60 ||      2 | b        |     152 |        61 ||      3 | c        |     153 |        62 ||      4 | d        |     154 |        63 |+--------+----------+---------+-----------+4 rows in set (0.00 sec)
登入後複製

索引创建格式:

create [ <index type> ] index <index name> [ using {btree | hash} ] on table specification ( <column in index> [,<column in index> ] )<index type> := unique | fulltext | spatial<column in index>:=<column name> [asc | desc]
登入後複製

创建一个最简单的索引:

mysql> create index stu_index     -> on student(stu_id);Query OK, 0 rows affected (0.36 sec)Records: 0  Duplicates: 0  Warnings: 0
登入後複製
这里创建立一个非唯一性的索引,其中默认使用asc升序排列。

如果没有指定using声明的话,mysql自动创建一个B树。所以上面的索引其实是这样子的:

mysql> create index stu_index using btree     -> on student(stu_id asc);Query OK, 0 rows affected (0.19 sec)Records: 0  Duplicates: 0  Warnings: 0
登入後複製
当然,btree索引可以换成哈希索引。

也可以为多个列创建唯一的索引:

mysql> create unique index stu_index using hash     -> on student(stu_id,stu_name);Query OK, 0 rows affected (0.19 sec)Records: 0  Duplicates: 0  Warnings: 0
登入後複製
添加索引:
mysql> alter table student    -> add unique index stu_index2    -> using hash (stu_tel);Query OK, 0 rows affected (0.36 sec)Records: 0  Duplicates: 0  Warnings: 0
登入後複製
删除索引:
mysql> drop index stu_index on student;Query OK, 0 rows affected (0.22 sec)Records: 0  Duplicates: 0  Warnings: 0
登入後複製
创建表时定义索引:
mysql> create table student(    -> stu_id          int primary key,    -> stu_name        varchar(5) not null,    -> stu_tel         int(5) unique,    -> stu_score       int(2),    -> index stu_index(stu_id)    -> );
登入後複製

只需在表的最后添加创建索引的语句即可。

视图是数据库中的虚拟表,它存储的不是自己的内容,而是经过select从其他表整合而来的。当其他表的内容改变是,视图内的内容跟着改变。在一定条件下,对视图的更新也将改变源表。

创建视图:

create [ or replace ] view <view name> [<column list>] as <table expression> [with [ cascaded |local ] check option ]mysql> create view view1 as    -> (select * from student);Query OK, 0 rows affected (0.16 sec)
登入後複製
mysql> select * from view1;+--------+----------+---------+-----------+| stu_id | stu_name | stu_tel | stu_score |+--------+----------+---------+-----------+|      1 | a        |     151 |        60 ||      2 | b        |     152 |        61 ||      3 | c        |     153 |        62 ||      4 | d        |     154 |        63 |+--------+----------+---------+-----------+4 rows in set (0.00 sec)
登入後複製
创建视图时,如果视图已存在,可用replace重新覆盖创建。

创建视图时还可以更改原始列名。

mysql> create or replace view view1(id,name,tel,score) as    -> (select * from student);Query OK, 0 rows affected (0.03 sec)
登入後複製
mysql> select * from view1;+----+------+------+-------+| id | name | tel  | score |+----+------+------+-------+|  1 | a    |  151 |    60 ||  2 | b    |  152 |    61 ||  3 | c    |  153 |    62 ||  4 | d    |  154 |    63 |+----+------+------+-------+4 rows in set (0.00 sec)
登入後複製
当一个视图可以更新时,就能够使用[with [ cascaded |local ] check option ]选项对更新对有效检查。

删除视图:

drop view view1;
登入後複製
bitsCN.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

AI Hentai Generator

AI Hentai Generator

免費產生 AI 無盡。

熱門文章

R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前 By 尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
3 週前 By 尊渡假赌尊渡假赌尊渡假赌

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

PHP 的大數據結構處理技巧 PHP 的大數據結構處理技巧 May 08, 2024 am 10:24 AM

PHP 的大數據結構處理技巧

如何優化 PHP 中的 MySQL 查詢效能? 如何優化 PHP 中的 MySQL 查詢效能? Jun 03, 2024 pm 08:11 PM

如何優化 PHP 中的 MySQL 查詢效能?

如何在 PHP 中使用 MySQL 備份和還原? 如何在 PHP 中使用 MySQL 備份和還原? Jun 03, 2024 pm 12:19 PM

如何在 PHP 中使用 MySQL 備份和還原?

如何使用 PHP 插入資料到 MySQL 表? 如何使用 PHP 插入資料到 MySQL 表? Jun 02, 2024 pm 02:26 PM

如何使用 PHP 插入資料到 MySQL 表?

Java 枚舉類型在資料庫中的應用場景有哪些? Java 枚舉類型在資料庫中的應用場景有哪些? May 05, 2024 am 09:06 AM

Java 枚舉類型在資料庫中的應用場景有哪些?

如何修復 MySQL 8.4 上的 mysql_native_password 未載入錯誤 如何修復 MySQL 8.4 上的 mysql_native_password 未載入錯誤 Dec 09, 2024 am 11:42 AM

如何修復 MySQL 8.4 上的 mysql_native_password 未載入錯誤

如何在 PHP 中使用 MySQL 預存程序? 如何在 PHP 中使用 MySQL 預存程序? Jun 02, 2024 pm 02:13 PM

如何在 PHP 中使用 MySQL 預存程序?

如何使用 PHP 建立 MySQL 表? 如何使用 PHP 建立 MySQL 表? Jun 04, 2024 pm 01:57 PM

如何使用 PHP 建立 MySQL 表?

See all articles