sql的case 用法
Posted kukai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql的case 用法相关的知识,希望对你有一定的参考价值。
select
id
, case id
when 1001 then ‘第一类‘
when 1002 then ‘第二类‘
else ‘第三类‘
end ‘ 类别 ‘
from
dept;
以上是关于sql的case 用法的主要内容,如果未能解决你的问题,请参考以下文章