Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have this two tables
Temp1
Load distinct Names,Numbers
resident Oldtable
NoConcatenate
Sales:
Load
IDs,Products,Names
Resident OldTable
How do i Left join my Temp1 table to Sales when i have a NoConcatenate? Where should my left join be?
not working
use left join only not noconcatenate
hope this helps
You can use Left Keep in place of the Left Join
Left keep (TempActiveUsersCookies)
When i only use left join it says it can find column Number
it means some column Number has some syntax error .may be you can use like [Column Number]
check for that field
hope this helps
like:
TempActiveUsersCookies:
Load Distinct
CookieIDINT as TempActiveUsersCookie,Count(DISTINCT SessionIDINT) as NumberOfBuys
Resident Hej
Where upper(EventType) = 'BUY' and not isnull(CookieIDINT)
Group by CookieIDINT;
Left Keep (TempActiveUsersCookies)
NoConcatenate
Sales:
Load
CookieIDINT, NumberOfBuys
or?
it means some column Number has some syntax error .may be you can use like [Column Number]
check for that field
hope this helps
Try with
Left keep (TempActiveUsersCookies)
and not Noconcatenate
If i do like that with no Noconcatenate it says filed not found (NumberOfBuys)
Check your code may be i believe you load any table twice or in the table when you Left Keep the table check the keys and make a composite keys to join them into previous table.
Hope this helps