赞
踩
1、创建视图
create view 视图名 as 查询语句;
2、使用视图
select * from 视图名;
3、删除视图
drop view 视图名;
4、查看视图字段信息
desc 视图名;