blob: dc85667c68c136b6bc0ee987ca56c7fac3914a35 [file] [log] [blame]
-- Local filter is on the right side of the left outer join
select
count(*)
from
j1 LEFT OUTER JOIN j4
ON ( j1.c_date = j4.c_date
and j1.c_time = j4.c_time
and j1.c_timestamp = j4.c_timestamp
and j1.c_varchar = j4.c_varchar
and j1.c_float = j4.c_float
and j1.c_double = j4.c_double
and j1.d9 = j4.d9
and j1.d18 = j4.d18
and j1.d28 = j4.d28
and j1.d38 = j4.d38
)
where
j4.c_integer > 0
and j4.c_integer IS NOT NULL
;