Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
p1tests
/
union.q
blob: 4ad606f92962cf15613fbad218799d1cbad366db [
file
] [
log
] [
blame
]
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
;