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

查询时数值型回到中文意思

2013-09-09 
查询时数值型返回中文意思?比如字段类型State为int型,0代表状态1,1代表状态2,以此类推。如何查询State返回,

查询时数值型返回中文意思?
比如字段类型State为int型,0代表状态1,1代表状态2,以此类推。
如何查询State返回,状态名称而不是数字?
[解决办法]
select case State when 0 then '状态1' when 1 then '状态2' end from tb
[解决办法]
select case when [state]=0 then '状态1'  when [state]=1 then '状态2' when ...
end 
from tb

热点排行