在mysql中怎样使某个字段的数据默认为0

在mysql中怎样使某个字段的数据默认为0,第1张

default 给字段默认值就可以了。

MySQL修改字段默认值

alter table 表名 alter column 字段名 set default '2'

union all 最方便了,不使用Union all 那就就用临时表,多写几条sql语句

declare  @T table (id int ,name varchar(20))

insert into @T select id,name from yourTable where id < 3

insert into @T select id,'' name from yourTable where id >= 3

select * from @T


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7291414.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-03
下一篇 2023-04-03

发表评论

登录后才能评论

评论列表(0条)

保存