Mysql基础篇之视图
视图是从一个或多个表中导出来的表,是一种虚拟存在的表。 视图就像一个窗口,通过这个窗口可以看到系统专门提供的数据。 这样,用户可以不用看到整个数据库中的数据,而之关心对自己有用的数据。 数据库中只存放了视图的定义,而没有存放视图中的数据,这些
视图是从一个或多个表中导出来的表,是一种虚拟存在的表。
视图就像一个窗口,通过这个窗口可以看到系统专门提供的数据。
这样,用户可以不用看到整个数据库中的数据,而之关心对自己有用的数据。
数据库中只存放了视图的定义,而没有存放视图中的数据,这些数据存放在原来的表中。
使用视图查询数据时,数据库系统会从原来的表中取出对应的数据。
视图中的数据依赖于原来表中的数据,一旦表中数据发生改变,显示在视图中的数据也会发生改变。
视图的作用
1.使操作简单化,可以对经常使用的查询定义一个视图,使用户不必为同样的查询操作指定条件
2.增加数据的安全性,通过视图,用户只能查询和修改指定的数据。
3.提高表的逻辑独立性,视图可以屏蔽原有表结构变化带来的影响。
总而言之,使用视图的大部分情况是为了保障数据安全性,提高查询效率
参考表:
创建视图的语法
复制代码代码如下:
CREATE [ALGORITHM]={UNDEFINED|MERGE|TEMPTABLE}]
VIEW 视图名 [(属性清单)]
AS SELECT 语句
[WITH [CASCADED|LOCAL] CHECK OPTION];
ALGORITHM表示视图选择的算法(可选参数)
UNDEFINED:MySQL将自动选择所要使用的算法
MERGE:将视图的语句与视图定义合并起来,使得视图定义的某一部分取代语句的对应部分
TEMPTABLE:将视图的结果存入临时表,然后使用临时表执行语句
视图名表示要创建的视图的名称
属性清单表示视图中的列名,默认与SELECT查询结果中的列名相同(可选参数)
WITH CHECK OPTION表示更新视图时要保证在该试图的权限范围之内(可选参数)
CASCADED:更新视图时要满足所有相关视图和表的条件
LOCAL:更新视图时,要满足该视图本身定义的条件即可
tips:创建试图时最好加上WITH CASCADED CHECK OPTION参数,这种方式比较严格
可以保证数据的安全性
视图操作
在单表上创建视图
复制代码代码如下:
mysql> CREATE VIEW work_view(ID,NAME,ADDR) AS SELECT id,name,address FROM work;
Query OK, 0 rows affected (0.05 sec)
此处work_view为视图名,后面括号内的参数代表视图中的列
AS表示将后面SELECT 语句中的查询结果赋给前面的视图中
在多表上创建视图
复制代码代码如下:
mysql> CREATE ALGORITHM=MERGE VIEW work_view2(ID,NAME,SALARY)
-> AS SELECT work.id,name,salary FROM work,salary
-> WHERE work.id=salary.id
-> WITH LOCAL CHECK OPTION;
Query OK, 0 rows affected (0.02 sec)
在多表中创建视图需要两表有指定联系,如上面的work.id=salary.id
SELECT查询视图
复制代码代码如下:
mysql> SELECT * FROM work_view;
+----+--------+--------+
| ID | NAME | ADDR |
+----+--------+--------+
| 1 | 张三 | 北京 |
| 2 | 李四 | 上海 |
| 3 | 王五 | 湖南 |
| 4 | 赵六 | 重庆 |
+----+--------+--------+
rows in set (0.00 sec)
此处的SELECT语句用法和其他表中的用法一样
别忘了,视图也是一张表,只不过它是虚拟的
DESCRIBE查看视图基本信息
复制代码代码如下:
mysql> DESCRIBE work_view;
+-------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+-------------+------+-----+---------+-------+
| ID | int(10) | NO | | NULL | |
| NAME | varchar(20) | NO | | NULL | |
| ADDR | varchar(50) | YES | | NULL | |
+-------+-------------+------+-----+---------+-------+
rows in set (0.00 sec)
与以往一样,此处的DESCRIBE可以简写为DESC
SHOW TABLE STATUS查看视图基本信息
复制代码代码如下:
mysql> SHOW TABLE STATUS LIKE 'work_view'\G
*************************** 1. row ***************************
Name: work_view
Engine: NULL
Version: NULL
Row_format: NULL
Rows: NULL
Avg_row_length: NULL
Data_length: NULL
Max_data_length: NULL
Index_length: NULL
Data_free: NULL
Auto_increment: NULL
Create_time: NULL
Update_time: NULL
Check_time: NULL
Collation: NULL
Checksum: NULL
Create_options: NULL
Comment: VIEW
row in set (0.00 sec)
此处大部分信息显示为NULL,更加说明了视图只是一张虚拟表
如果使用SHOW TABLE STATUS查看一张真实表,结果就不会如此
SHOW CREATE VIEW查看视图详细信息
复制代码代码如下:
mysql> SHOW CREATE VIEW work_view\G
*************************** 1. row ***************************
View: work_view
Create View: CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `work_view` AS select `work`.`id` AS `ID`,`work`.`name` AS `NAME`,`work`.`address` AS `ADDR` from `work`
character_set_client: utf8
collation_connection: utf8_general_ci
row in set (0.00 sec)
尼玛好复杂,这里包含了视图的各个属性
在views表中查看视图详细信息
复制代码代码如下:
mysql> SELECT * FROM information_schema.views\G
*************************** 1. row ***************************
TABLE_CATALOG: def
TABLE_SCHEMA: person
TABLE_NAME: work_view
VIEW_DEFINITION: select `person`.`work`.`id` AS `ID`,`person`.`work`.`name` AS `NAME`,`person`.`work`.`address` AS `ADDR` from `person`.`work`
CHECK_OPTION: NONE
IS_UPDATABLE: YES
DEFINER: root@localhost
SECURITY_TYPE: DEFINER
CHARACTER_SET_CLIENT: utf8
COLLATION_CONNECTION: utf8_general_ci
*************************** 2. row ***************************
TABLE_CATALOG: def
TABLE_SCHEMA: person
TABLE_NAME: work_view2
information_schema.views表内包含了所有的视图定义信息
不过,通常使用SHOW CREATE VIEW 更加方便
这里信息太长,没有完全列举……
修改视图
修改视图是指修改数据库中已存在的表的定义,当基本表的某些字段发生改变时,可以通过修改视图来保持视图和基本表之间一致
CREATE OR REPLACE VIEW语句修改视图
复制代码代码如下:
mysql> CREATE OR REPLACE ALGORITHM=TEMPTABLE
-> VIEW work_view(ID,NAME)
-> AS SELECT id,name FROM work;
Query OK, 0 rows affected (0.03 sec)
话说,CREATE OR REPLACE语句非常灵活
在视图存在的情况下可对视图进行修改,视图不在的情况下可创建视图
其基本用法和CREATE VIEW 几乎一致
ALTER语句修改视图
复制代码代码如下:
mysql> ALTER VIEW work_view2(NAME,SALARY,ADDR)
-> AS SELECT name,salary,address FROM work,salary
-> WHERE work.id=salary.id;
Query OK, 0 rows affected (0.03 sec)
我这把名字、工资和地址当做字段修改了视图
如果是真实的话,对小偷来说极为方便
更新视图
更新视图是指通过视图来插入、更新和删除表中的数据,以为视图是一个虚拟表,其中木有数据
通过视图更新时,都是转换到基本表来更新
复制代码代码如下:
mysql> UPDATE work_view2 SET SALARY=5899.00 WHERE NAME='张三';
Query OK, 1 row affected (0.03 sec)
Rows matched: 1 Changed: 1 Warnings: 0
此处语句等价于
复制代码代码如下:
mysql> UPDATE salary SET salary=5899.00 WHERE id=1;
tips:视图中虽然可以更新数据,但是有很多限制
一般情况下,最好将视图作为查询数据的虚拟表,而不要通过视图更新数据
删除视图
删除视图是指删除数据库中已存在的视图,删除视图时,只能删除视图的定义,不会删除数据
复制代码代码如下:
mysql> DROP VIEW IF EXISTS work_view;
Query OK, 0 rows affected (0.00 sec)
mysql> DROP VIEW work_view2;
Query OK, 0 rows affected (0.01 sec)
这里的IF EXIST参数用来判断视图是否存在,也可以不写

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.
