Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
nulleqjoin
/
neqjnPrtnBy_11.q
blob: 9c0badf7411e04bc11bb8702506976b778ba3570 [
file
] [
log
] [
blame
]
SELECT t1
.
col_int c1
,
t2
.
col_int c2
FROM l_tblprtnby_intcl t1
,
r_tblprtnby_intcl t2
WHERE t1
.
col_int
=
t2
.
col_int OR
(
t1
.
col_int IS NULL AND t2
.
col_int IS NULL
)
ORDER BY t1
.
col_int
,
t2
.
col_int
LIMIT
7
;