视图:
- 视图:是一种虚拟的表。视图中的数据在数据库中并不实际存在,行和列的数据来自自定义视图中查询使用的表,并且是在使用视图时动态生成的。
- 创建视图:create or replace view viewname as select 语句 [with[cascaded|local|check option]]
- 例如:create or REPLACE view View_GetUsers as select * from tb_users;
- 查询视图:
- 查看创建视图语句:show create view View_GetUsers
- 查看视图数据:select * from View_GetUsers
- 修改
- create or replace view viewname as select ...... [with[cascaded|local|check option]]
- alter view viewname as select ...... [with[cascaded|local|check option]]
- 删除:drop view if exists viewname
注:[with[cascaded|local|check option]],为可选项.................
存储过程:
标签:option,--,视图,011,cascaded,check,select,view From: https://www.cnblogs.com/YYkun/p/17571507.html