Hi,
How to do a LeftJoin without lose any data ?
Datastore 1 contains all contacts Id FirstName Lastname
Datasore 2 contains all sells by contacts IdContact IdOrder Amount Date
When i do left join (Id - IdContact) :
if contact hasn't order all columns of first Datastore is replace by 0 for this contact.
I want : id Firstname Lastname idOrder Amount Date
I have 0 0 0 0 0 0
How to do ?
Thanks