我有一张这样的桌子
选项卡1
create table tab1(ID int identity(1,1), Type varchar(10),IsValued bit)
选项卡1:
ID Type IsValued
----------------
1 S 1
2 R 0
3 R 0
4 S 1
5 S 1
6 R 0
7 S 1
我不想在 IsValued 列中插入值,而是在 Type ='S' 时创建一个约束(NOT TRIGGER),IsValued 应插入为 1,当 Type ='R' 时,IsValued 应插入为 0
喜欢 :IsValued = case when Type ='S' then 1 when Type ='R' then 0 end
我怎样才能做到这一点..