본문 바로가기

프로그래밍/DB

조건문 (case when then)

select 열이름1,

case when 조건1 then 결과값1

        when 조건2 then 결과값2

        else 결과값3

end as 바꿔서 출력하고싶은 이름

from 테이블명;


조건1일때 결과값1 조건2일때 결과값2

나머지는 결과값3

end

'프로그래밍 > DB' 카테고리의 다른 글

데이터값을 삭제하기  (0) 2017.09.20
count 함수(count,sum,avg,max,min)  (0) 2017.09.20
숫자 함수(MOD,ABS)  (0) 2017.09.20
문자 함수(LOWER,UPPER,LENGTH)  (0) 2017.09.20
공백 제거하기(trim)  (0) 2017.09.20