MySQL CASE: Revision history

From IT Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

    2 March 2023

    • curprev 23:4723:47, 2 March 2023Dbeaver talk contribs 771 bytes +771 새 문서: '''MySQL의 CASE 구문은 해당 Column 값을 조건식을 통해 True, False를 판단하여 조건에 맞게 Column값을 변환할 때 사용하는 함수이다.''' == 기본 구조 == <syntaxhighlight lang="sql"> CASE WHEN 조건식1 THEN 식1 WHEN 조건식2 THEN 식2 ... ELSE 조건에 맞는경우가 없는 경우 실행할 식 END </syntaxhighlight> == 예제 == <syntaxhighlight lang="sql"> // NAME Column의 IS NULL 조건이 True인 경우 "No name"... Tag: Visual edit