-
逻辑运算符的优先级:not、and、or查看全部
-
查看状态: select status from dba_tablespaces where tablespace_name='TEST1_TABLESPACE';查看全部
-
设置表空间为脱机状态: alter tablespace test1_tablespace offline;查看全部
-
建立永久表空间: create tablespace test1_tablespace datafile 'test1.dbf' size 10m 建立临时表空间: create temporay tablespace test1_tablespace datafile 'test1.dbf' size 10m 查看: desc dba_data_files查看全部
-
建立永久表空间: create tablespace test1_tablespace datafile 'test1file.dbf' size 10m 建立临时表空间: create temporary tablespace test1_tablespace tempfile 'test1file.dbf' size 10m 查看: desc dba_data_file查看全部
-
select distinct username as 用户名 from users; 去掉重复的值使用'distinct' 关键字查看全部
-
在sqlplus中设置显示格式查看全部
-
五个约束:非空约束,主键约束,外键约束,检查约束,唯一约束查看全部
-
在创建表时设置检查约束(列级)查看全部
-
设置唯一约束,语法查看全部
-
唯一约束和主键约束的区别 : 唯一约束允许是空值,主键约束不能是空值查看全部
-
seleck &^&,*$%(ps:所要找的表中的条件) from %¥%(PS:指定找的表) seleck * from %……(PS:指定找的表,所要内容)查看全部
-
更改表明语句查看全部
-
非空约束只能在列级设置 不能再表级设置查看全部
-
在创建表时设置外键约束查看全部
举报
0/150
提交
取消