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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)