MySQL NULL- functies
MySQL IFNULL() en COALESCE() Functies
Bekijk de volgende tabel "Producten":
P_Id | ProductName | UnitPrice | UnitsInStock | UnitsOnOrder |
---|---|---|---|---|
1 | Jarlsberg | 10.45 | 16 | 15 |
2 | Mascarpone | 32.56 | 23 | |
3 | Gorgonzola | 15.67 | 9 | 20 |
Stel dat de kolom "UnitsOnOrder" optioneel is en NULL-waarden kan bevatten.
Bekijk de volgende SELECT-instructie:
SELECT ProductName, UnitPrice * (UnitsInStock + UnitsOnOrder)
FROM Products;
Als in het bovenstaande voorbeeld een van de "UnitsOnOrder"-waarden NULL is, is het resultaat NULL.
MySQL IFNULL() Functie
Met de MySQL- IFNULL()
functie kunt u een alternatieve waarde retourneren als een expressie NULL is.
Het onderstaande voorbeeld retourneert 0 als de waarde NULL is:
SELECT ProductName, UnitPrice * (UnitsInStock + IFNULL(UnitsOnOrder, 0))
FROM Products;
MySQL COALESCE() Functie
Of we kunnen de functie als volgt gebruiken:
COALESCE()
SELECT ProductName, UnitPrice * (UnitsInStock + COALESCE(UnitsOnOrder, 0))
FROM Products;