Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
nulleqjoin
/
innrjn_bgint.q
blob: 9e72b9f6f795e6133fff56f4f3ad7914eb14adb0 [
file
] [
log
] [
blame
]
SELECT t1
.
col_bigint
,
t2
.
col_bigint
FROM tbl_bigint_l t1 INNER JOIN tbl_bigint_r t2
ON t1
.
col_bigint
=
t2
.
col_bigint OR
(
t1
.
col_bigint IS NULL AND t2
.
col_bigint IS NULL
);