
oracle
thenumb
喝最烈的酒。
展开
-
oracle语句
--创建表空间 create tablespace itheima datafile 'c:\itheima.dbf' size 100m autoextend on next 10m; --删除表空间 drop tablespace itheima; --创建用户 create user itheima identified by itheima default tablespace ith...原创 2019-07-08 21:49:13 · 103 阅读 · 0 评论 -
oracle数据库 pl/sql语句
---视图 ---视图的概念:视图就是提供一个查询的窗口,所有数据来自于原表。 ---查询语句创建表 create table emp as select * from scott.emp; select * from emp; ---创建视图【必须有dba权限】 create view v_emp as select ename, job from emp; ---查询视图 select ...原创 2019-07-09 20:16:39 · 221 阅读 · 0 评论