时间:2021-07-01 10:21:17 帮助过:50人阅读
mysql索引与视图 原始表student字段: mysql select column_name,data_type - from information_schema.columns - where table_name = 'student';+-------------+-----------+| column_name | data_type |+-------------+-----------+| stu_id | int || stu_n
mysql索引与视图
原始表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 [ using {btree | hash} ] on table specification ( [, ] ) := unique | fulltext | spatial := [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) -> );
只需在表的最后添加创建索引的语句即可。
创建视图:
create [ or replace ] view[ ] as [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;人气教程排行
- 355次 1 对数据库模式进行规范化处理,是在数据库设计的什么阶段?
- 355次 2 mysql如何删除多个表格数据库数据
- 355次 3 Oracle购买价格和服务费计算方式
- 355次 4 MYSQL查看和新增表分区
- 354次 5 TRACE32调试技巧
- 353次 6 Oracle数据库教程:ORA-01031:权限不足
- 353次 7 Oracle物化视图失效的几种情况及测试
- 352次 8 mysql-sql语句查询多个字段不等于零怎么写?
- 351次 9 如何提高mysql大批量数据更新(update)的效率?
- 350次 10 mysql如何从ibd文件恢复数据
- 350次 11 ORACLEROLLUP和CUBE函数
- 350次 12 IBMDB2赋权[SQL0551N]
- 350次 13 mysql不等于符号写法
- 349次 14 redhat8mysql安装具体过程_MySQL
- 349次 15 SQLServer出现Error:1326错误(管理器无法连接远程数据库)问题解决方案
- 348次 16 centos下配置mysql数据库自动备份
- 348次 17 MySQL中使用SQL语句对字段进行重命名
- 347次 18 数据库中的表以行和列来组织数据,每一行称为每一列称为
- 347次 19 windowsservice-mysql安装出错,远程调用失败
- 346次 20 SQL连接查询语法及使用