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