首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

一个简单的sql语句,该怎么处理

2013-10-21 
一个简单的sql语句要把一段c#代码转成sql实现switch(textbox.text)case 1case 2case 3string the

一个简单的sql语句
要把一段c#代码转成sql实现
switch(textbox.text)
case '1'
case '2'
case '3'
   string= "the first"
break;
case'4'
   string= "the second"
break;

转成sql后我想这么实现:
set @result = 
case @input
   when '1' then 'the first'
问题是,有很多同样的情况我不想每一种情况都写一遍,也就是:
set @result = 
case @input
   when '1' then 'the first'
   when '2' then 'the first'
....多个then后面都是一样的,我能用类似or的写法,只写一个then.
when '1' or '2' then 'the first'

[解决办法]


DECLARE @text int

SELECT CASE @text WHEN 1 THEN 1 WHEN 2 THEN 2 WHEN 3  THEN 3 ELSE 4 END
SELECT CASE WHEN @text=1  THEN  1  WHEN @text=2 THEN 2 WHEN @text =3 OR @text=4   THEN 3 ELSE 4 END

--case when 在sql里有上面两种写法

热点排行