摘要:
select b,c,CASE a WHEN '1' THEN '1001' WHEN '2' THEN '1002'ELSE '1003' end from test1 阅读全文
摘要:
if exists(select * from test.dbo.test1 where a='1')beginprint('exists ')endelse begin print('no exists ') endgo 阅读全文
摘要:
IF ELSE 语句 IF ELSE 是最基本的编程语句结构之一几乎每一种编程语言都支持这种结构而 它在用于对从数据库返回的数据进行检查是非常有用的TRANSACT-SQL 使用IF ELSE 的例子如下 语法 if (condition) begin (statement block) end e... 阅读全文