跳转至

mysql

SQL(Structured Query Language)结构化查询语言,语言分3个部分,如下: - 数据定义语言(Data Definition Language,简称DDL),如创建删除表、视图 - DROP:删除数据库和表等对象 - CREATE:创建数据库和表等对象 - ALTER:修改数据库和表等对象的结构 - 数据操作语言(Data Manipulation Language,简称DML),如查询、插入、删除、更新数据 - SELECT:查询表中的数据 - INSERT:向表中插入新数据 - UPDATE:更新表中的数据 - DELETE:删除表中的数据 - 数据控制语言(Data Contral Language,简称DCL),如控制用户访问权限, - GRANT:赋予用户操作权限 - REVOKE:取消用户的操作权限 - COMMIT:确认对数据库中的数据进行的变更 - ROLLBACK:取消对数据库中的数据进行的变更

- SQL语法不区分大小写,如,关键字create,数据库名、表名和列名;
- 插入的数据是区分大小写的
- SQL语句以分号`;`结尾,可以多行输入

1 数据库

1.1 登录数据库

  • 关键字
  • mysql
  • -h指定服务器IP地址,本地127.0.0.1
  • -u指定数据库用户名,如root
  • -P指定mysql服务端口号,默认3306
  • -p指定数据库密码
  • 语法
mysql -h 127.0.0.1 -u root -p
  • 示例
mysql -u root -p
Enter password: ******
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 20
Server version: 8.0.23 MySQL Community Server - GPL

Copyright (c) 2000, 2021, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

1.2 显示数据库

  • 关键字
  • show
  • databases
  • 语法
show databases;
  • 示例
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sakila             |
| sys                |
| world              |
+--------------------+
6 rows in set (0.10 sec)

1.3 创建数据库

  • 关键字
  • create
  • database
  • 语法
create database 数据库名;
  • 示例
mysql> create database test_db;
Query OK, 1 row affected (0.09 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sakila             |
| sys                |
| test_db            |
| world              |
+--------------------+
7 rows in set (0.00 sec)

1.4 删除数据库

  • 关键字
  • drop
  • database
  • 语法
drop database 数据库名;
  • 示例
mysql> drop database test_db;
Query OK, 0 rows affected (0.14 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sakila             |
| sys                |
| world              |
+--------------------+
6 rows in set (0.00 sec)

1.5 使用数据库

  • 关键字
  • use
  • 语法
use 数据库名;
  • 示例
mysql> use test_db
Database changed

1.6 备份数据库

1.6.1 mysqldump

  • 原理:将待备份数据库的表结构,数据内容转成sql语句存储;还原数据时按顺序执行备份文本中的sql语句。

1.6.2 方式一:备份单个数据库中的指定的表

  • 语法
mysqldump [-h 服务器IP] -u 用户名 -p 数据库名 [表名,...,表名] > 备份文件名
- 主要事项:
  - 表名省略时,表示备份整个数据库
  • 示例
C:\Users\shuhaiwen>mysqldump -u root -p test_db >2.sql
Enter password: ******

::: warning 1. 语句后不要加结束符; 2. 备份时不要进入数据库中 :::

1.6.3 方式二:备份多个数据库

  • 语法
mysqldump [-h 服务器IP] -u 用户名 -p --databases 数据库名 [数据库名...] > 备份文件名
  • 示例
C:\Users\shuhaiwen>mysqldump -u root -p --databases test_db >D:\1.sql
Enter password: ******

1.6.4 方式三:备份所有数据库

  • 语法
mysqldump -u 用户名 -p --all-databases > 备份文件名
  • 示例
mysqldump -u root -p --all_databases >D:\all.sql
Enter password: ******

1.7 还原备份数据库

  • 语法
mysql -u 用户名 -p [数据库名] < 备份数据库名
  • 示例
mysql -u root -p test_db <D:\1.sql
Enter password: ******

::: warning 当不指定数据库名时,备份的文件中需要有创建数据库语句。比如通过备份数据库方法中的方法二和方法三备份的文件中就含有创建数据库语句。 :::

1.8 查看数据库支持引擎

  • 关键字
  • show
  • engines
  • 语法
show engines;
  • 示例
mysql> show engines;
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
| Engine             | Support | Comment                                                        | Transactions | XA   | Savepoints |
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+
| MEMORY             | YES     | Hash based, stored in memory, useful for temporary tables      | NO           | NO   | NO         |
| MRG_MYISAM         | YES     | Collection of identical MyISAM tables                          | NO           | NO   | NO         |
| CSV                | YES     | CSV storage engine                                             | NO           | NO   | NO         |
| FEDERATED          | NO      | Federated MySQL storage engine                                 | NULL         | NULL | NULL       |
| PERFORMANCE_SCHEMA | YES     | Performance Schema                                             | NO           | NO   | NO         |
| MyISAM             | YES     | MyISAM storage engine                                          | NO           | NO   | NO         |
| InnoDB             | DEFAULT | Supports transactions, row-level locking, and foreign keys     | YES          | YES  | YES        |
| BLACKHOLE          | YES     | /dev/null storage engine (anything you write to it disappears) | NO           | NO   | NO         |
| ARCHIVE            | YES     | Archive storage engine                                         | NO           | NO   | NO         |
+--------------------+---------+----------------------------------------------------------------+--------------+------+------------+

2 账号管理

2.1 新建用户

  • 使用create user命令:
  • 关键字
  • create user:创建用户
  • identified by:指定设置密码
  • password:指定密码,当密码不是特殊字符可以省略
  • 语法:
create user 新用户名 [identified by [password] '密码'];
  • 示例
mysql> create user 'test'@'localhost' identified by '123456';
Query OK, 0 rows affected (0.11 sec)
mysql> use mysql
Database changed
mysql> select User,Host from user;
+------------------+-----------+
| User             | Host      |
+------------------+-----------+
| mysql.infoschema | localhost |
| mysql.session    | localhost |
| mysql.sys        | localhost |
| root             | localhost |
| test             | localhost |
+------------------+-----------+
5 rows in set (0.00 sec)

::: tip 1. 新用户可以没有密码 :::

2.2 删除用户

  • 使用drop命令
  • 语法
drop user 用户名
  • 示例
mysql> drop user 'test'@'localhost';
Query OK, 0 rows affected (0.16 sec)

mysql> use mysql
Database changed
mysql> select User from user;
+------------------+
| User             |
+------------------+
| mysql.infoschema |
| mysql.session    |
| mysql.sys        |
| root             |
+------------------+
4 rows in set (0.00 sec)

3 表

3.1 完整性约束条件

完整性约束条件 说明
FOREIGN KEY 外键,关联其它表的主键
PRIMARY KEY 主键
NOT NULL 不为空
UNIQUE 唯一
AUTO_INCREMENT 自动增加
DEFAULT 默认值

3.2 创建表

  • 关键字
  • table
  • create
  • 语法
crate table 表名(
属性名 数据类型 [完整性约束条件],
...
...
属性名 数据类型 [完整性约束条件]
);
  • 示例
mysql> create table table1(
    -> id int,
    -> name varchar(20),
    -> age tinyint);
Query OK, 0 rows affected (1.40 sec)

mysql> describe table1;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| id    | int         | YES  |     | NULL    |       |
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
3 rows in set (0.08 sec)

3.3 查看表

  • 关键字
  • table
  • describedesc
  • 语法
describe 表名;
  • 示例
mysql> describe table1;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| id    | int         | YES  |     | NULL    |       |
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
3 rows in set (0.08 sec)

查找更详细的信息 - 语法

show create table 表名;
  • 示例
mysql> show create table table1;
+--------+---------------------------------------------------------+
| Table  |CreateTable                                              |
+--------+---------------------------------------------------------+
| table1 | CREATE TABLE `table1` (
  `id` int DEFAULT NULL,
  `name` varchar(20) DEFAULT NULL,
  `age` tinyint DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci |
+--------+---------------------------------------------------------+
1 row in set (0.13 sec)

3.4 显示所有表

  • 关键字
  • show tables
  • 语法
show tables;
  • 示例
mysql> show tables;
+-------------------+
| Tables_in_test_db |
+-------------------+
| table1            |
+-------------------+
1 row in set (0.02 sec)

3.5 修改表

  • 关键字
  • alter
  • table

3.5.1 修改表名

  • 关键字
  • rename
  • 语法
alter table 表名 rename 新表名;
  • 示例
mysql> alter table table1 rename table2;
Query OK, 0 rows affected (0.75 sec)

mysql> desc table1;
ERROR 1146 (42S02): Table 'test_db.table1' doesn't exist
mysql> desc table2;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| id    | int         | YES  |     | NULL    |       |
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
3 rows in set (0.06 sec)

3.5.2 修改表字段数据类型

  • 关键字
  • modify
  • 语法
alter table 表名 modify 属性名 新数据类型; 
  • 示例
mysql> alter table table2 rename table1;
Query OK, 0 rows affected (0.44 sec)

mysql> alter table table1 modify id tinyint;
Query OK, 0 rows affected (3.47 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> desc table1;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| id    | tinyint     | YES  |     | NULL    |       |
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
3 rows in set (0.02 sec)

3.5.3 修改表字段名

  • 关键字
  • change
  • 语法
alter table 表名 change 原属性名 新属性名 新数据类型;
  • 示例
mysql> alter table table1 change id ID tinyint;
Query OK, 0 rows affected (0.13 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> desc table1;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| ID    | tinyint     | YES  |     | NULL    |       |
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
3 rows in set (0.06 sec)

3.5.4 增加字段

  • 关键字
  • add
  • 语法
alter table 表名 add 新属性名 数据类型 [完整性约束条件] [first|after 原属性名];
  • 示例
mysql> alter table table1 add sex enum('男','女');
Query OK, 0 rows affected (0.92 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> desc table1;
+-------+-----------------+------+-----+---------+-------+
| Field | Type            | Null | Key | Default | Extra |
+-------+-----------------+------+-----+---------+-------+
| ID    | tinyint         | YES  |     | NULL    |       |
| name  | varchar(20)     | YES  |     | NULL    |       |
| age   | tinyint         | YES  |     | NULL    |       |
| sex   | enum('男','女') | YES  |     | NULL    |       |
+-------+-----------------+------+-----+---------+-------+
4 rows in set (0.04 sec)

3.5.5 删除字段

  • 关键字
  • drop
  • 语法
alter table 表名 drop 属性名;
  • 示例
mysql> alter table table1 drop sex;
Query OK, 0 rows affected (2.90 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> desc table1;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| ID    | tinyint     | YES  |     | NULL    |       |
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
3 rows in set (0.02 sec)

3.5.6 删除表的外键

  • 关键字
  • drop
  • foreign key
  • 语法
alter table 表名 drop foreign key 外键别名; 

3.5.7 创建表后增加主键外键

  • 语法
alter table 表名 add primary key (字段名)
  • 示例
mysql> alter table table1 add primary key(id);
Query OK, 0 rows affected (3.71 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> desc table1;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| id    | int         | NO   | PRI | NULL    |       |
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
3 rows in set (0.05 sec)
- 语法
alter table 表名 add CONSTRAINT 外键约束名称 foreign key (字段名) references 参考的表名 (字段名);
mysql> create table table2(
    -> id int,
    -> primary key(id));
Query OK, 0 rows affected (0.67 sec)

mysql> desc table2;
+-------+------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+------+------+-----+---------+-------+
| id    | int  | NO   | PRI | NULL    |       |
+-------+------+------+-----+---------+-------+
1 row in set (0.06 sec)

mysql> alter table table1 add constraint pk1 foreign key (id) references table2 (id);
Query OK, 0 rows affected (2.99 sec)
Records: 0  Duplicates: 0  Warnings: 0

3.6 删除表

  • 关键字
  • drop
  • 语法
  • drop table 表名;
  • 示例
mysql> drop table table1;
Query OK, 0 rows affected (0.53 sec)

mysql> desc table1;
ERROR 1146 (42S02): Table 'test_db.table1' doesn't exist

4 查询

  • 关键字
  • select from:查询
  • where:通过指定条件查询
  • group by:通过指定字段分组
  • having:表示满足某条件
  • order by:通过指定字段进行排序
  • ascdesc:降序或升序
  • 语法
select 属性列表 
from 表名或视图名
[where 条件表达式]
[group by 属性名 [having 条件表达式]]
[order by 属性名 [asc|desc]]

4.1 查询条件关键字

  • 关键字
  • in:指定集合
  • between and:指定范围区间
  • like:用于模糊匹配字符串
    • %:匹配任意长度
    • _:匹配单个字符
  • is null:判断属性值是否为空
  • andor:与和或连接
  • distinct:限定查询结果唯一
  • limit:限定查询结果记录数
  • 语法
select 属性名集 from 表名 where 属性名 in (1,...n);
select 属性名集 from 表名 where 属性名 between 1 and 2;
select 属性名集 from 表名 where 属性名 like '字符串';
select 属性名集 from 表名 where 属性名 is null;
select 属性名集 from 表名 where 条件1 and|or 条件2;
select distinct 属性名集 from 表名;
select 属性名集 from 表名 limit 数量;
select 属性名集 from 表名 limit 起始位置,数量;

5 插入表数据

  • 关键字
  • INSERT INTO ... VALUES

5.1 插入所有数据

  • 语法
insert into 表名 values(1,...,n);
  • 示例
mysql> insert into table1 values(0,"jack",24);
Query OK, 1 row affected (0.08 sec)

mysql> select* from table1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  0 | jack |   24 |
+----+------+------+
1 row in set (0.00 sec)

5.2 插入指定字段数据

  • 语法
insert into 表名(属性1,...,属性n) values(1,...,n);
  • 示例
mysql> insert into table1(id,name,age) values(1,"tom",26);
Query OK, 1 row affected (0.08 sec)

mysql> select * from table1 where id=1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | tom  |   26 |
+----+------+------+
1 row in set (0.02 sec)

5.3 插入多行数据

  • 语法
insert into 表名 values(值列表1),...(值列表n);
  • 示例
mysql> insert into table2 values(0),(1),(2),(3);
Query OK, 4 rows affected (0.14 sec)
Records: 4  Duplicates: 0  Warnings: 0

mysql> select * from table2;
+----+
| id |
+----+
|  0 |
|  1 |
|  2 |
|  3 |
+----+
4 rows in set (0.00 sec)

5.4 将查询结果插入表中

  • 语法
insert into 表名1 (属性列表) select (属性列表) from 表名2 [可选条件];

6 更新表数据

  • 关键字
  • UPDATE ... SET
  • 语法
update 表名 set 
属性名1=1,
...,
属性名n=n
where 条件表达式;
  • 示例
mysql> update table1 set
    -> name="tim",
    -> age=25
    -> where id=1;
Query OK, 1 row affected (0.10 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select* from table1 where id=1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  1 | tim  |   25 |
+----+------+------+
1 row in set (0.03 sec)

7 删除表数据

  • 关键字
  • DELETE FROM
  • 语法
delete from 表名 [where t条件表达式];
  • 示例
mysql> select * from table1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  0 | jack |   24 |
|  1 | tim  |   25 |
+----+------+------+
2 rows in set (0.00 sec)

mysql> delete from table1 where id=1;
Query OK, 1 row affected (0.07 sec)

mysql> select * from table1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  0 | jack |   24 |
+----+------+------+
1 row in set (0.02 sec)
当不知道删除的where条件表达式时,会删除整个表数据

8 索引

  • 组成:索引可以由表上一列或多列组成
  • 功能:提高查询表数据的速度
  • 索引存储类型:B树索引、哈希索引

8.1 索引优缺点

索引能增加查询速度,但会影响插入速度。 - 优点: - 提高查询数据速度 - 提高分组和排序速度 - 缺点: - 索引占据额外物理空间 - 增加和删除数据需要额外维护索引

title: 如何处理向含索引的表中插入大量数据?
1. 首先删除索引。
2. 再插入数据。
3. 最后重写添加索引。

8.2 索引类型

  • 普通索引:不附加任何限制
  • 唯一性索引:限制索引项值必须唯一
  • 全文索引:使用FULLTEXT设置全文索引,且全文索引只用在TEXTCHARVARCHAR数据类型上,全文索引适用于数据量加大的字符串型字段上。
  • 单列索引:在单个字段上创建索引
  • 多列索引:在多个字段是创建索引(只有查询时指定了第一个字段,多列索引才能起作用)
  • 空间索引:使用SPATIAL设置空间索引(空间索引只用在空间类型数据字段上GEOMETRYPOINTLINESTRINGPOLYGON,且索引字段不为空)

8.3 索引设计原则

  1. 尽量选择唯一性索引
  2. 为经常需要排序、分组和联合查询的字段设置索引
  3. 为常做查询的字段设置索引
  4. 限制索引数量
  5. 尽量不在数据量大的字段上设置索引
  6. 在大数据字段采用前缀索引
  7. 删除很少使用或不再使用的索引

8.4 索引的创建

8.4.1 创建表时创建索引

  • 语法
crate table 表名(
属性名 数据类型 [完整性约束条件],
...
...
属性名 数据类型 [完整性约束条件],
[UNIQUE|FULLTEXT|SPATIAL] INDEX|KEY [别名](属性名 [(长度)] [ASC|DESC])
);
  • 解释:
  • UNIQUEFULLTEXTSPATIAL分别对应唯一性索引、全文索引、空间索引
  • INDEXKEY是索引关键字,都可以使用
  • 长度:限制索引字段值得长度,只能在TEXTCHARVARCHAR字符串类型上使用
  • ASC(升序)、DESC(降序)指示索引排序规则。
  • 示例
mysql> create table index1(
    -> id int,
    -> attr1 char(4),
    -> index(id)
    -> );
Query OK, 0 rows affected (1.07 sec)

8.4.2 在已存在表上建立索引

  • 语法1
create [UNIQUE|FULLTEXT|SPATIAL] INDEX 索引名 ON 表名(属性名 [(长度)] [ASC|DESC]);
  • 示例
mysql> create fulltext index f_index on index1(attr1(2));
Query OK, 0 rows affected, 1 warning (7.30 sec)
Records: 0  Duplicates: 0  Warnings: 1
  • 语法2
alter table 表名 add [UNIQUE|FULLTEXT|SPATIAL] INDEX 索引名(属性名 [(长度)] [ASC|DESC]);
  • 示例
mysql> alter table index1 add UNIQUE index u_index(id ASC);
Query OK, 0 rows affected (0.43 sec)
Records: 0  Duplicates: 0  Warnings: 0

8.5 删除索引

  • 语法
drop index 索引名 on 表名;
  • 示例
mysql> drop index u_index on index1;
Query OK, 0 rows affected (0.20 sec)
Records: 0  Duplicates: 0  Warnings: 0

9 视图

视图是虚拟化的表,它可以从表中定于或从另一个视图中定义;视图的数据来自原表,因此对视图的更改会改动原表的数据。原表增加列或删除没有被视图引用的列不影响视图。 - 功能: - 使操作简单化:为常使用的查询定义视图,避免查询时指定大量条件,使操作简单 - 增加了数据的安全性:只提供权限内数据

9.1 创建视图

  • 语法
create [algorithm={undefined|merge|template}] view 视图名 [(属性列表)] as select表达式 [with [cascaded|local] check option]
  • 解释
  • algorithm:指定视图算法
    • undefined:自动选择
    • merge
    • template
  • with check option:表示更新视图时要保证在该视图的权限范围内
  • 示例
mysql> create view t_view(name,age) as select name,age from table1;
Query OK, 0 rows affected (0.18 sec)
mysql> select * from table1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  0 | jack |   24 |
+----+------+------+
1 row in set (0.02 sec)

mysql> insert into table1 values(1,"tim",21);
Query OK, 1 row affected (0.10 sec)

mysql> select * from table1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  0 | jack |   24 |
|  1 | tim  |   21 |
+----+------+------+
2 rows in set (0.00 sec)

9.2 查看视图结构

  • 语法:
  • desc|describe 视图名;
  • show table status like '视图名';
  • show create view 视图名;
  • 示例
mysql> desc t_view;
+-------+-------------+------+-----+---------+-------+
| Field | Type        | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| name  | varchar(20) | YES  |     | NULL    |       |
| age   | tinyint     | YES  |     | NULL    |       |
+-------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

9.3 修改视图结构

  1. 使用create or replace
  2. 语法
create or replace [algorithm={undefined|merge|template}] view 视图名 [(属性列表)] as select表达式 [with [cascaded|local] check option]
  • 解释:这操作和创建视图类似,当视图存在就更新,当视图不存在就创建。
  • 使用alter
  • 语法
alter [algorithm={undefined|merge|template}] view 视图名 [(属性列表)] as select表达式 [with [cascaded|local] check option]
  • 解释:与创建视图类型

9.4 更新视图

  1. 更新视图会更改引用的表数据
  2. 更新操作,如insert intodelete fromupdate set与更新表操作一致。
  3. 示例
mysql> update t_view set age=21 where name="tim";
Query OK, 1 row affected (0.26 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select * from t_view;
+------+------+
| name | age  |
+------+------+
| jack |   23 |
| tim  |   21 |
+------+------+
2 rows in set (0.00 sec)

mysql> select * from table1;
+----+------+------+
| id | name | age  |
+----+------+------+
|  0 | jack |   23 |
|  1 | tim  |   21 |
+----+------+------+
2 rows in set (0.00 sec)

9.5 删除视图

  • 语法
drop view [if exists] 视图名 [restrict|cascade];
  • 示例
mysql> drop view if exists t_view;
Query OK, 0 rows affected (0.07 sec)