mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 08:25:35 +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');
|