发布时间:2017-09-21编辑:佚名阅读(1763)
在SQL查询SELECT语句中如果对某列上的值进行判断并显示相关内容可使用CASE....WHEN.....ELSE....END语句。如:
create table t3(id int,xingbie int) go insert into t3 values(1,0) insert into t3 values(2,1) insert into t3 values(3,0) go select id,xingbie,case xingbie when 0 then '男' else '女' end from t3 go
0人
0人
0人
0人