海海日记-冯海滨博客

您现在的位置是:首页 > SQL > 正文

SQL

SQL CASE语句

happyfhb2016-04-15SQL1765

从数据表中选择一个字段“field”,如果“field”值是1或NULL就赋值为1,其它情况为0,该怎么写啊?

(CASE isnull(field,'')
	WHEN '1' THEN '1'
	WHEN '' THEN '1'
	ELSE '0' END
) AS field
或者在when后边写条件
case when field = '1' then '1' when field is null then '1' else '0' end as field


平淡中储蓄成长

发表评论

评论列表

  • 这篇文章还没有收到评论,赶紧来抢沙发吧~