select a from table where hakbun = '123456';
했을때 결과값이
a
------
가
나
이렇게 나왔을때
a
-------
가나
이렇게 수정하는 방법 없나요?
select concat(a.1, a.2)
from
(select case when a='가' then '밥좀주세요' end 1,
case when a='나' then '뿌잉뿌잉' end 2
from table
where hakbun = '12345') a;
이렇게 해도 안돼고 ㅠㅠ 뭐가 문젤까여 |