Sign in
apache
/
hive
/
refs/heads/HiveAggregateReduceFunctionsRule
/
.
/
hplsql
/
src
/
test
/
queries
/
local
/
nvl.sql
blob: 1a843bcb28a06cb76cec87902881358eb16c286b [
file
] [
log
] [
blame
]
NVL
(
'First non-null'
,
1
);
NVL
(
NULL
,
'First non-null'
);
NVL
(
NULL
,
'First non-null'
,
1
);
NVL
(
NULL
,
NULL
,
'First non-null'
,
1
);