文
文生
Unregistered / Unconfirmed
GUEST, unregistred user!
在case 里面使用通配符
select
Type=CASE TType when 'A' Then '单'
when 'B' Then '多'
when like 'C_' Then '其它'
Else '没有类型' end
from Store
帮我改一下
结果:
TType Type
A 单
B 多
A 单
B 多
CH 其它
CI 其它
CE 其它
CD 其它
E 没有类型
G 没有类型
select
Type=CASE TType when 'A' Then '单'
when 'B' Then '多'
when like 'C_' Then '其它'
Else '没有类型' end
from Store
帮我改一下
结果:
TType Type
A 单
B 多
A 单
B 多
CH 其它
CI 其它
CE 其它
CD 其它
E 没有类型
G 没有类型