Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
nulleqjoin
/
innrjn_dt.q
blob: 5e345f83d4f69df9441c627a21e3e8a9b68bfd4e [
file
] [
log
] [
blame
]
SELECT t1
.
col_dt
,
t2
.
col_dt
FROM typeall_l t1 INNER JOIN typeall_r t2
ON t1
.
col_dt
=
t2
.
col_dt OR
(
t1
.
col_dt IS NULL AND t2
.
col_dt IS NULL
);