MySQL and MariaDB - Overview of the NULL functions | MySQL and MariaDB provides a set of NULL functions that can be used to handle NULL values in SQL queries. NULL functions can be useful when working with data that may contain NULL values. They can be used to handle NULL values in a consistent and predictable way, and to ensure that queries return accurate and complete results. However, it is important to use them carefully and to ensure that they are used appropriately for the specific use case. | NULL-Funktionen |
| COALESCE | COALESCE(%, %) | Gibt das erste Nicht-NULL-Argument zurück. More about COALESCE Function | IFNULL | IFNULL(Expression, Value) | Gibt [Wert] zurück, wenn [Ausdruck] NULL ist, sonst [Ausdruck]. More about IFNULL Function
Synonyms:NVL | ISNULL | ISNULL(Expression) | Testet ob das Argument NULL ist. More about ISNULL Function | NULLIF | NULLIF(Expression 1, Expression 2) | Gibt NULL zurück, wenn [Ausdruck 1] = [Ausdruck 2]. More about NULLIF Function | NVL | NVL(Expression, Value) | Gibt [Wert] zurück, wenn [Ausdruck] NULL ist, sonst [Ausdruck]. Oracle-Kompatible. More about NVL Function
Synonyms:IFNULL | NVL2 | NVL2(Expression, Value1, Value2) | Gibt einen von zwei Werten basierend darauf zurück, ob ein angegebener Ausdruck NULL ist oder nicht. Oracle-Kompatible. More about NVL2 Function |
|
|
| See also: |
|
|
|