I have dates and transactions comming from 2 SQL Tables
Calandar:
Date
9/1,
9/2,
9/3,
9/4,
9/5
Transx:
OrderDate, Order
9/1,1234
9/2,2345
9/4,5678
I want to join these tables and save into a QVD. And Transx Table should have all the dates(like 9/3, 9/5... )
I tried using Left join to using Where condition but its throwing an error. I cant name them same, because I'm getting Circularloop. (I'm using same Date table for other tables also)