select model, consumption
from usage
group by model
이처럼 model로 그룹지어져 있는데요, 저 model이 예를들어 'no1', 'no2', 'no3'... 이런식으로 나간다고 하면,
no1일 경우만 consumption을 ceiling 하려고 합니다.
select model, case model = 'no1' then ceiling(consumption) else consumption end as consumption
from usage
group by model
이런식으로 하였는데 'no1'뿐 아니라 나머지도 다 ceiling이 되네요..
위의 방법이 맞긴 한데 제가 다른걸 틀린건지 아니면 다른방법이 있는지 궁금합니다. |