Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
p1tests
/
inner_join.q
blob: 62318ee1aafe5cb156a4bcb947679c9a9b27d53d [
file
] [
log
] [
blame
]
select
student
.
name
,
student
.
age
,
student
.
gpa
,
voter
.
registration
from
student inner join voter on
(
student
.
name
=
voter
.
name
);