sqlfmt
Code
Branches
Tags
Commits
main
sqlfmt
/
tests
/
fixtures
/
unnest_coalesce
/
input.sql
1
SELECT
id
FROM
UNNEST
(
COALESCE
(
(
SELECT
ids
FROM
cached
)
,
(
SELECT
ids
FROM
fallback
)
)
)
AS
t
(
id
)