Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
nulleqjoin
/
neqjn_bgint.q
blob: b204968879ecf695552d1e47801baa70c565628c [
file
] [
log
] [
blame
]
SELECT t1
.
col_int
,
t1
.
col_chr
,
t1
.
col_bigint
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
);