09 2022 档案
摘要:视图 视图的概念:视图就是提供一个查询的窗口,所有数据来自于原表。 查询语句创建表create table emp as select * from scott.emp;select * from emp; 创建视图【必须有dba权限】create view v_emp as select enam
阅读全文
摘要:--创建表空间create tablespace itheimadatafile 'c:\itheima.dbf'size 100mautoextend onnext 10m;--删除表空间drop tablespace itheima; --创建用户create user itheimaident
阅读全文