Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
inner
/
2way_on_c_timestamp.sql
blob: b8f2389204185dbc79884aa78b3dc638ebe229fb [
file
] [
log
] [
blame
]
select
count
(*)
from
j1
INNER
JOIN
j2
ON
(
j1
.
c_timestamp
=
j2
.
c_timestamp
)
where
j1
.
c_bigint
IS
NOT
DISTINCT
FROM
j2
.
c_bigint
and
j1
.
c_timestamp
IS
NOT
NULL
;