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

输出值解决办法

2012-01-24 
输出值数据库中有个字段值是-1,我想输出时,改为0,可以吗[解决办法]select case 字段名 when 1 then 0 else

输出值
数据库中有个字段值是-1,我想输出时,改为0,可以吗

[解决办法]
select case 字段名 when 1 then 0 else 字段名 end from 表名
[解决办法]
select (case field1 when -1 then 0 else field1 end) as field1
from table

热点排行