-
create table userinfo_new as select * from userinfo;查看全部
-
设置用户的表空间查看全部
-
对 scoot用户的解锁操作查看全部
-
scoot默认密码查看全部
-
case column when value1 then value11 when value2 then value22 [else value33]end 类似于 decode(column,value1,value11,value2,value22[,defaulvale]) 对值进行结果显示 case when column>value1 then value11 when column<value2 then value22 [else value33] end 对范围进行结果显示查看全部
-
修改列名:alter table userinfo rename column email to newcolumn; 修改表明:rename userinfo to new userinfo;查看全部
-
create table userinfo (id number(6,0), username varchar2(20), userpwd varchar2(30) );查看全部
-
constraints 和constraint都一样,不影响命令运行查看全部
-
alter tablespace test1_tablespace offline;查看全部
-
字符串需添加单引号括起来查看全部
-
insert into table 向表中输入数据查看全部
-
oracle insert into里的into不能省略查看全部
-
也可以用 alter table userinfo rename to users;查看全部
-
drop column 。。。中的column不能省略,mysql中可以省略查看全部
-
非空约束即是不为空的数据类型,因此用not null而系统一般默认可为空,且不为空的话,必需赋值查看全部
举报
0/150
提交
取消