IF 함수란?IF 함수는 주어진 조건의 결과가 True면 참일때 설정한 값을, False일때는 False일때 설정한 값을 반환하는 역할을 수행합니다.MySQL IF 함수 공식문서 바로가기 MySQL :: MySQL 8.4 Reference Manual :: 15.6.5.2 IF StatementIF search_condition THEN statement_list [ELSEIF search_condition THEN statement_list] ... [ELSE statement_list] END IF The IF statement for stored programs implements a basic conditional construct. Note There is also an IF() function..