“Mysql ifNull” Kod odpowiedzi

Mysql ifNull

##syntax:
SELECT IFNULL(col_with_null_value, default_value);

##you can see the result select with the string NA where the document is null:
SELECT IFNULL(user_document_id, 'NA');
Ivan The Terrible

mysql inaczej, jeśli

IF condition1 THEN
    statements;
ELSEIF condition2 THEN # OPTIONAL
	statements;
ELSE # OPTIONAL
    statements;
END IF;
Scary Seahorse

Jeśli wartość kolumny jest zerowa, to w mysql

 SELECT 
    contactname, IFNULL(bizphone, homephone) phone
FROM
    contacts;
Ankur

Odpowiedzi podobne do “Mysql ifNull”

Pytania podobne do “Mysql ifNull”

Więcej pokrewnych odpowiedzi na “Mysql ifNull” w Sql

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu