Hi,
I am having issues with a SQL statement that I generally run via Microsoft SQL Server. When I put the SQL into the designer I am getting an error. It does not like the a. b. c. reference. I was wondering if anyone knows how I should write this to pull data?
select a*
from dim_customer_account a,
dim_territory b,
dim_territory c
where a.current_primary_territory_sk = b.territory_sk /* for primary rep assignment*/
and a.current_secondary_territory_sk = c.territory_sk /* for secondary rep assignment*/
Thanks