oracle增删改查基础,Oracle基础教程之表的增删改查

Oracle表管理-----怎么样创建表

-------------------------------------------------------

建表

学生表

sql>create table student(

xh number(4),--学号

xm varchar2(20),---姓名

sex char(2),---性别

birthday date,---出生日期

sal number(7,2),----奖学金

);

---------------------------------------------------------

表修改

添加一个字段

sql>alter table student add(classid number(2));

修改字段的长度

sql>alter table student modify (xm varchar2(30));

删除一个字段

sql>alter table student drop column sal;

修改表的名字

sql>rename student to stu

删除表

sql>drop table student;

---------------------------------------------------------

添加数据

Oracle中的默认日期格式‘DD-MON-YY’dd  日子(天) mon 是月

份 yy是2位的年

改日期的默认格式:

alter seesion set nls_date_format = 'yyyy-mm-dd'

==========================================================

当你在数据库中插入了null值的数据的时候,你想根据这些null来

把这个数据查出来

错误的:select *  from student where birthday='';

正确的是:select * from student  where birthday is null;

这是Oracle和其它数据库之间不一样的地方  请牢记

select * from student  where birthday is not null;0b1331709591d260c1c78e86d0c51c18.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值