SQl触发器 声明变量。

begin                                                         ----代码块
  declare @cwhcode varchar(50)             --声明变量

 

  SET @cwhcode = '1'                             --设置初始值
 

  select @cwhcode=ISNULL(cwhname,'') from inserted a left join Warehouse b on a.cwhcode=b.cwhcode                          --inserted插入零时表    


RAISERROR (@cwhcode,16,1)

 end    

备注: 注意 !!!!ISNULL(cwhname,'')一定要非空校验  。。否则报错

你可能感兴趣的:(sql,linq,p2p)