MySQL IFNULL 함수: 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:4423:44, 2 March 2023Dbeaver talk contribs 490 bytes +490 새 문서: '''MySQL IFNULL 함수는 해당 Column의 값이 NULL을 반환할 때, 다른 값으로 출력할 수 있도록 하는 함수이다.''' '''기본 구조'''<syntaxhighlight lang="sql"> SELECT IFNULL(Column명, "Null일 경우 대체 값") FROM 테이블명; </syntaxhighlight>'''예시'''<syntaxhighlight lang="sql"> # NAME Column이 NULL인 경우 "No name"을 출력, NULL이 아닌 경우 NAME Column을 출력 SELECT IFNULL(NAME, "No name") as NAME FROM ANIMAL_INS </syntaxhig... Tag: Visual edit