mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +01:00
30bec863cf
Adding functions NVL() and NVL2().
9 lines
153 B
Text
9 lines
153 B
Text
#
|
|
# Testing CASE and its abbreviations
|
|
#
|
|
|
|
SET sql_mode=ORACLE;
|
|
|
|
SELECT NVL(NULL, 'a'), NVL('a', 'b');
|
|
|
|
SELECT NVL2(NULL, 'a', 'b'), NVL2('a', 'b', 'c');
|