“Mysql ifnull” Code-Antworten

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 ESSEN IF

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

Wenn der Spaltenwert null ist, dann in MySQL

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

Ähnliche Antworten wie “Mysql ifnull”

Fragen ähnlich wie “Mysql ifnull”

Weitere verwandte Antworten zu “Mysql ifnull” auf Sql

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen