Database/MySQL

Mysql case 구문 Example

BUST 2019. 1. 15. 21:53

Mysql case 구문 Example

  • 조건에 필요한 경우 case 구문을 활용할수가 있다.

case Example

case

when {codition}

then {result}

else {elseResult}

end


select 

case

when logType = 'click'

then 'TARGET'

else 'NON-TARGET'

end as type

from logs

limit 100


'Database > MySQL' 카테고리의 다른 글

MySQL Null Condition  (0) 2019.01.23
CHAR와 VARCHAR의 차이  (0) 2018.12.23
MySQL Partition Table  (0) 2018.11.05
MySQL Unique Key  (0) 2018.10.29
Group By 최대값을 가진 Row를 추출하는 쿼리  (0) 2018.09.03