January 18, 2018 at 3:50 pm
If I use this:
LEFT JOIN
[TSI].[ZATS_BROKER_FEED] Z on L.Part_Num = Z.Composite_part and Z.[SUB_ORG] = 'FORD' and Z.created_date > Getdate() - 400
I get 7700 rows back. Which is ok, but there is a 1 to many relationship with the left side to ZATS, so i get the universe of the part from ZATS, and it understand that, but i get rows where the column UPDATE_DATE is populated or not.
I don't need the rows where Update_Date.is NULL
So.... I tried this . . .
LEFT JOIN
[TSI].[ZATS_BROKER_FEED] Z
on L.Part_Num = Z.Composite_part and Z.[SUB_ORG] = 'FORD' and Z.created_date > Getdate() - 400 and UPDATE_DATE IS NOT NULL.
Now i get MORE rows! ..
Thoughts? I know SQL treats NULLS differently, but i am not clear on when and how.
Thanks!
January 18, 2018 at 4:31 pm
jeffshelix - Thursday, January 18, 2018 3:50 PMIf I use this:
LEFT JOIN
[TSI].[ZATS_BROKER_FEED] Z on L.Part_Num = Z.Composite_part and Z.[SUB_ORG] = 'FORD' and Z.created_date > Getdate() - 400I get 7700 rows back. Which is ok, but there is a 1 to many relationship with the left side to ZATS, so i get the universe of the part from ZATS, and it understand that, but i get rows where the column UPDATE_DATE is populated or not.
I don't need the rows where Update_Date.is NULLSo.... I tried this . . .
LEFT JOIN
[TSI].[ZATS_BROKER_FEED] Z
on L.Part_Num = Z.Composite_part and Z.[SUB_ORG] = 'FORD' and Z.created_date > Getdate() - 400 and UPDATE_DATE IS NOT NULL.Now i get MORE rows! ..
Thoughts? I know SQL treats NULLS differently, but i am not clear on when and how.Thanks!
Well, hard to say, what table is the column UPDATE_DATE in? Can't tell from the snippet you provided especially since there is no table alais being used.
January 19, 2018 at 7:04 am
Sorry about that lapse. UPDATE_DATE is in the the ZATS Table (alias Z).
ZATS as a CREATED DATE and an UPDATE DATE.
thanks
January 19, 2018 at 8:09 am
You are correct, i had not aliased the column, so here is the new code ...
LEFT JOIN
[TSI].[ZATS_BROKER_FEED] Z
on L.Part_Num = Z.Composite_part and Z.[SUB_ORG] = 'FORD' and Z.created_date > Getdate() - 400 and Z.UPDATE_DATE IS NOT NULL
I still get about 3,000 MORE rows than i got with the Z.Update_date is not null section of code.
thoughts? thanks
January 19, 2018 at 9:09 am
jeffshelix - Friday, January 19, 2018 8:09 AMYou are correct, i had not aliased the column, so here is the new code ...
LEFT JOIN
[TSI].[ZATS_BROKER_FEED] Z
on L.Part_Num = Z.Composite_part and Z.[SUB_ORG] = 'FORD' and Z.created_date > Getdate() - 400 and Z.UPDATE_DATE IS NOT NULLI still get about 3,000 MORE rows than i got with the Z.Update_date is not null section of code.
thoughts? thanks
This is the opposite of what you said in your first post, where you state that you get more rows with UPDATE_DATE IS NOT NULL. You're confusing people (no you're not, you're confusing me).
How about posting both queries with their rowcounts?
For fast, accurate and documented assistance in answering your questions, please read this article.
Understanding and using APPLY, (I) and (II) Paul White
Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply