-
向表中所有字段添加值 insert into userinfo values(1,'xxx','123','xxx@123.com',sysdate);查看全部
-
truncate table table_name 截断表 truncate table new_userinfo; drop table table_name 删除表结构 drop table new_userinfo;查看全部
-
修改表名 rename userinfo to new_userinfo;查看全部
-
修改字段名 alter table userinfo rename colum email to new_email;查看全部
-
删除字段 alter table drop colum remarks;查看全部
-
更改数据类型 alter table userinfo modify userpwd number(6,0);查看全部
-
更改字段数据类型 alter table userinfo modify remarks varchar2(400);查看全部
-
alter table (表明)userinfo add (字段名)remarks varchar(500); 添加字段查看全部
-
创建用户信息表 create table userinfo(id number(6,0),username varchar2(20),userpwd vatchar2(20),email vatchar2(20),regdate date); desc userinfo 查看创建的表查看全部
-
创建表的基本语法查看全部
-
1、字符型 固定长度 char(n) n<=2000 nchar(n) n<=1000 unicode 可变长度 varchar2(n) n<=4000 nvarchar2(n) <=2000 unicode 2、树脂型 number(p,s) p:有线数字,s:小数点后位数 float(n) 存放二进制数 3、日期 date 公元前4712.1.1到公元9999.12.31 timestamp 时间戳类型,精确到小数秒 4、其他类型 blob 4GB 二进制 clob 4GB 字符串查看全部
-
删除表空间 drop tablespace tablespace_name [including contents] 删除表空间及其数据文件 drop tablespace test1_tablespace including contents查看全部
-
alter tablespace test1_tablespace add datafile 'test2_file.dbf' size 10m; select file_name from dba_data_files where tablespace_name='TEST1_TABLESPACE'; 不能删除第一个数据文件 2.删除数据文件(不能删除第一个数据文件,除非删除整个表空间) alter tablespace test1_tablespace drop datafile 'test2_file.dbf';查看全部
-
增加数据文件语法查看全部
-
表空间设置读写例子查看全部
举报
0/150
提交
取消