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

今日的一个SQL题-case语句和decode函数

2013-07-09 
今天的一个SQL题-case语句和decode函数select game_time as 比赛日期,(case rstwhen W then 胜利when

今天的一个SQL题-case语句和decode函数
select game_time as 比赛日期,(case rst when 'W' then '胜利' when 'F' then '失败' else '无结果'end)结果,count(rst) as 结果统计from recgroup by game_time,rst;

?

记录下:

1. ?decode函数用法:

decode(表达式1,条件1,结果1,[条件2,结果2][default]);

2. ?case 语句:

case 表达式

when 表达式1 then ....

when 表达式2 then ....

else ?......

end 表达式

1 楼 quanwsx 2013-07-02   哦 真不错

热点排行