MySQL -zelfstudie

MySQL HOME MySQL-intro MySQL RDBMS

MySQL SQL

MySQL SQL MySQL SELECT MySQL WAAR? MySQL EN, OF, NIET MySQL BESTELLEN DOOR MySQL INVOEGEN IN MySQL NULL-waarden MySQL-UPDATE MySQL VERWIJDEREN MySQL-LIMIET MySQL MIN en MAX MySQL-COUNT, AVG, SUM MySQL LIKE MySQL-jokertekens MySQL IN MySQL TUSSEN MySQL-aliassen MySQL wordt lid MySQL INNER JOIN MySQL LEFT JOIN MySQL RECHTS AANMELDEN MySQL CROSS JOIN Zelf lid worden van MySQL MySQL UNION MySQL GROEP DOOR MySQL HEBBEN MySQL BESTAAT MySQL ELK, ALLES MySQL INSERT SELECT MySQL-CASE MySQL Null-functies MySQL-opmerkingen MySQL-operators

MySQL- database

MySQL DB maken MySQL Drop DB MySQL-tabel maken MySQL-droptabel MySQL Wijzig Tabel MySQL-beperkingen MySQL Niet Null MySQL Uniek MySQL primaire sleutel MySQL-buitenlandse sleutel MySQL-controle MySQL-standaard MySQL-index maken MySQL automatisch verhogen MySQL-datums MySQL-weergaven

MySQL- referenties

MySQL-gegevenstypen MySQL-functies

MySQL- voorbeelden

MySQL-voorbeelden MySQL-quiz MySQL-oefeningen

MySQL IFNULL() Functie

❮MySQL-functies

Voorbeeld

Retourneer de opgegeven waarde ALS de uitdrukking NULL is, retourneer anders de uitdrukking:

SELECT IFNULL(NULL, "W3Schools.com");

Definitie en gebruik

De functie IFNULL() retourneert een opgegeven waarde als de expressie NULL is.

Als de expressie NOT NULL is, retourneert deze functie de expressie.

Syntaxis

IFNULL(expression, alt_value)

Parameterwaarden

Parameter Description
expression Required. The expression to test whether is NULL
alt_value Required. The value to return if expression is NULL

Technische details

Werkt in: Van MySQL 4.0

Meer voorbeelden

Voorbeeld

Retourneer de opgegeven waarde ALS de uitdrukking NULL is, retourneer anders de uitdrukking:

SELECT IFNULL("Hello", "W3Schools.com");

Voorbeeld

Retourneer de opgegeven waarde ALS de uitdrukking NULL is, retourneer anders de uitdrukking:

SELECT IFNULL(NULL, 500);

❮MySQL-functies