Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good day!
In load script i have three tables:
Sales:
Distributor_id
Route_Id
Link_Table:
Nomenclature_id
Date
Distributors:
Distributor_name
But when i add to table Sales two fields Nomenclature_id,Date, make autonumberhash key and connect it with link table:
load
Nomenclature_id,
Date,
autonumberhash128(Distributor_id,Nomenclature_id, Date) as Key
from...
outer join(Link_Table)
Key
resident Sales;
drop fields Distributor_id,Nomenclature_id,Date from Sales;
i have missing values in field Route_id in result, when i make straight table with fields Distributor_id, Route Id:
I think, problem connected with values Nomenclature_id,Date in Link Table (they have some values, which are not match in table Sales)
Have anyone idea how to connect correctly these three tables?
Thanks.