2014-06-19 78 views

回答

2

假設ID是一個字符,否則,你需要做一些類型轉換:

select 
    case when id in ('03','05') then '03 and 05' else id end, 
    sum(value) 
from tab 
group by 1 
相關問題