|
No, not at all.
Iam using libraries when doing SQL. I dont think this is library list issue.
As per Steve Richter post
"If the count is high with your join query check that there is more
than 1 b row for every matching a row.
with t1 as (
select a.sbkrnm, b.srcdta, count(*) joinCount
from file1 a
join file2 b
on a.sbkrnm = b.srcdta
group by a.sbkrnm, b.srcdta
)
select * from t1 where joinCount > 1 "
I ran the above SQL , I am seeing all SBKRNM & SRCDTA displayed. I dont know why?
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.