Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
p1tests
/
right_outer_join.q
blob: e771b8482c1fa7850c73e754bd971f79090a1f47 [
file
] [
log
] [
blame
]
select
student
.
name
,
voter
.
registration
from
student right outer join voter on
(
student
.
name
=
voter
.
name
)
where
student
.
age
<
30
;