blob: 9824a0644792847722b18ed3ad7bfc9e4216cd21 (
plain) (
blame)
1
2
3
4
5
|
select case when true then cast("123" as int) else 100501 end
union all
select case when true then NULL else 100502 end
union all
select case when false then NULL else 100503 end;
|