mysql---视图

视图是什么: 视图是一个虚拟表,其内容由查询定义。同真实的表同样,视图包含一系列带有名称的列和行数据。视图的数据变 化会影响到基表,基表的数据变化也会影响到视图 视图的基本使用 建立视图 create view 视图名 as select语句; 案例:web create view v_ename_dname as select ename, dname from EMP, DEPT where
相关文章
相关标签/搜索