orcal (一)

1:创建表时的数据属性:

(1)数字型:

number(5):五位整数:99999—— -99999

number(5,2):五位数,其中包括两位小数、

(2)日期型

date:date 包含年月日和时分秒 oracle默认格式1-1月-1999

修改日期的默认格式(临时修改,数据库重启后仍为默认;如要修改需要修改注册表)
alter 表名 set 列名 ='yyyy-mm-dd';

2:修改表
--添加一个字段
sql>alter table student add (classid number(2));
--修改一个字段的长度
sql>alter table student modify (xm varchar2(30));
--修改字段的类型或是名字(不能有数据) 不建议做
sql>alter table student modify (xm char(30));
--删除一个字段 不建议做(删了之后,顺序就变了。加就没问题,应该是加在后面)
sql>alter table student drop column sal;
--修改表的名字 很少有这种需求
sql>rename student to stu;

3:判空、判非空

select * from 表名 where 列名 is null     //不能写= ,!=

select * from 表名 where 列名 is  not  null

4:删除表

drop table student; --删除表的结构和数据;
delete from student where xh = 'a001'; --删除一条记录;
truncate table student; --删除表中的所有记录,表结构还在,不写日志,无法找回删除的记录,速度快

你可能感兴趣的:(Orcal数据库)