SQL语句大部分是相通的吧,只是有些DBMS(数据库管理系统)对一些变量或者函数或是拓展功能等的定义不同...才导致在不同DBMS中操作数据库时出现某些语句的差异。
2016-06-14
creat tablespace test1_tablespace datafile 'test1file.dbf' size 10m;
select file_name from dba_data_files where tablespace_name='test1_tablespace';
select file_name from dba_data_files where tablespace_name='test1_tablespace';
2016-06-14
alter user username account unock 启用用户。
实例:alter user scott account unlock;
命令语句不需要分号也可以执行,而sql语句一定需要分号结尾。
实例:alter user scott account unlock;
命令语句不需要分号也可以执行,而sql语句一定需要分号结尾。
2016-06-14