Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
nulleqjoin
/
neqjn_agg2.q
blob: 742f10a2b73a4728ddbb18b8a2278c38d199955e [
file
] [
log
] [
blame
]
SELECT min
(
t2
.
col_bigint
),
t2
.
col_chr
FROM tbl_bigint_l t1
,
tbl_bigint_r t2
WHERE t1
.
col_bigint
=
t2
.
col_bigint OR
(
t1
.
col_bigint IS NULL AND t2
.
col_bigint IS NULL
)
group
by
t2
.
col_chr
order
by
t2
.
col_chr
;