Sign in
apache
/
drill-test-framework
/
refs/heads/main
/
.
/
framework
/
resources
/
Functional
/
p1tests
/
union.q
blob: 4ad606f92962cf15613fbad218799d1cbad366db [
file
]
select
*
from
(
select
s
.
name
from
student s
where
s
.
age
<
20
UNION ALL
select
v
.
name
from
voter v
where
v
.
age
<
20
)
student
;