mirror of
https://github.com/MariaDB/server.git
synced 2025-02-23 22:03:08 +01:00
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');
|