-
非空约束查看全部
-
非空约束 NOT NULL create table tablename (column ,.. NOT NULL);查看全部
-
删除数据 delete from tablename where condition;查看全部
-
修改数据 update table_name set column1=value1,... where conditions;//有条件查看全部
-
复制数据(在创建表时、在添加数据时) create table new_table select *|id,... from old_table; 或 insert into table_new(column...) select id,...|* from table_old;查看全部
-
desc dba_users 查看数据字典查看全部
-
向表中添加默认值 : 在创建或修改表的时候添加默认值 create table userinfo (id number(6,0), regdate date default sysdate);查看全部
-
操作表中数据: 添加数据 insert into userinfo( column_name )values(value1,value2); eg: insert into userinfo values(1,'xxx','123','xxx@126.com',sysdate);--》获取当前系统时间查看全部
-
删除表 truncate table table_name(只删除表数据,不删除表,截断) drop table table_name(表被删除)查看全部
-
修改表: 添加字段 alter table userinfo add remarks varchar2(500); 更改字段数据类型 alter table userinfo modify remarks varchar2(400); 或 alter table userinfo modify userpwd number(6,0); 查看 desc userinfo 删除字段 alter table userinfo drop column remarks; 修改字段名 alter table table_name rename column newcolumn_name; 修改表名 rename table_name TO NEW_table_name查看全部
-
创建表 CREATE TABLE table_name (column_name datetype) eg: create table userinfo ( id num(6,0), username varchar(20), userpwd varchar(20);)查看全部
-
字符型, 日期型,数值型,其他类型(存放大对象数据) char(n) nchar(n)(可变长度)vachar(n) nvachar(n) number(p,s) p有效数字,s小数点后的位数 float(n) date 精确到秒 timestamp 精确到小数秒 blob 存放二进制数据 clob 存放字符型查看全部
-
表的约定查看全部
-
增加数据文件 alter tablespace 表空间名 add datafile '数据文件名’ size 大小; 删除数据文件 alter tablespace 表空间名 drop datdfile '数据文件名’;//注意不能删掉第一个创建的表空间查看全部
-
修改表空间 状态 联机或脱机状态 alter tablespace 空间名 offline|online select status dba_tablespaces where tablespace_name='空间名(大写)‘;’ 设置只读或可读写 alter tablespace tablespace_name read only|read write查看全部
举报
0/150
提交
取消