mysql 视图
视图的好处
重用sql语句,简化复杂语句,屏蔽查询细节
保护数据,用户只看到部分字段
视图可以嵌套,可使用order by,不能索引,不能有触发器和默认值
有的视图可以执行更新操作,mysql不支持物化视图
视图的两种算法
Merge:合并,执行的时候,将视图的sql语句与外部查询语句混合在一起,最终执行
Temptable:临时表,将视图的sql语句生成一个结果表,在结果表中进行查询
show create view a 查看创建视图的语句
create view a as select... 创建merge算法的视图
create algorithm = temptable view a... 创建temptable算法的视图
drop view a 删除视图
create or replace [algorithm = temptable] view a 更新视图,也可以先drop再create
相关推荐
CoderToy 2020-11-16
emmm00 2020-11-17
王艺强 2020-11-17
ribavnu 2020-11-16
bianruifeng 2020-11-16
wangshuangbao 2020-11-13
苏康申 2020-11-13
vivenwan 2020-11-13
moyekongling 2020-11-13
云中舞步 2020-11-12
要啥自行车一把梭 2020-11-12
aydh 2020-11-12
kuwoyinlehe 2020-11-12
minerk 2020-11-12
vitasfly 2020-11-12
jazywoo在路上 2020-11-11
敏敏张 2020-11-11
世樹 2020-11-11