Oracle
海绵糖
学习
展开
-
oracle常用函数、存储过程等
---视图 ---视图的概念:视图就是提供一个查询的窗口,所有数据来自于原表。 ---查询语句创建表 create table emp as select * from scott.emp; select * from emp; ---创建视图【必须有dba权限】 create view v_emp as select ename, job from emp; ---查询视图 select * ...原创 2020-03-20 18:44:09 · 172 阅读 · 0 评论 -
orcle常用语句
```sql --创建表空间 create tablespace itheima datafile 'c:\itheima.dbf' size 100m autoextend on next 10m; --删除表空间 drop tablespace itheima; --创建用户 create user itheima identified by itheima default tablesp...原创 2020-03-20 18:40:54 · 213 阅读 · 0 评论