sql语句 给表增加一列并设置默认值

2024-11-06 18:25:02
推荐回答(5个)
回答1:

alter table table1 add col1 int default 0

[code="java"]SELECT (

CASE WHEN account_id= ''

THEN 'empty'

when account_id is null

then 'empty'

ELSE account_id

END 

) account_id

FROM account 

WHERE account_id = 'XXX' OR account_id ='' OR (account_id is NULL)[/code]

扩展资料:

SQL默认值是数据库对非空字段数据的一种默认数据,当你设置好默认值的时候,字段设置非NULL,但是插入数据的时候没有给出值,数据库自动会使用默认值插入。如果正常插入值,需要手动添加密码,但是如果有大量的字段可以使用默认值,那么语句会显得有点臃肿。设置字段password默认值。

Create table stu(

stuId varchar2(30) primary key,

stuName varchar2(50) not null,

stuSex char(2) check(stuSex in('男','女')) default '男', --oracle中无默认属性?

stuAge Number(2) check(stuAge >1),

stuJg varchar2(30), --籍贯

stuDept varchar2(40));

参考资料来源:百度百科——结构化查询语言

回答2:

sql语句 给表增加一列并设置默认值
alter table table1 add col1 int default 0

回答3:

alter table t1 add user_id varchar(10) default '000001'
向表T1添加字段user_id,默认值000001

回答4:

alter table table1 add col1 int default 0

回答5:

alter table 表名 add 列名 列类型 default 默认值