Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
nulleqjoin
/
mxdcmprtr2.q
blob: 71e728652aa0c699d6e116ef10807923c0f0d310 [
file
] [
log
] [
blame
]
SELECT
*
FROM tbl_bigint_l t1
,
tbl_bigint_r t2
WHERE t1
.
col_bigint
=
t2
.
col_bigint
AND
(
(
t1
.
col_int
=
t2
.
col_int
)
OR
(
t1
.
col_int IS NULL AND t2
.
col_int IS NULL
)
);