Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi can anyone convert these script into qlikview script
Select * from Category C left join Products P ONC.[Category ID]=P.Category left join OrderDetails OD ONP.ProductID=OD.ProductIDWhere P.ProductID between 12 and 29Order by P.ProductID
We can write the above query in Qlik as below. Please mark it as solved if it has resolved your issue.
NoConcatenateCategory:Load *, [Category ID]from Category;
left join(Category)Load *,Category as [Category ID],ProductIDFrom Productswhere ProductID>12 and ProductID<29;
Left join (Category)Load *,ProductIDFrom OrderDetails