Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Select c.Type, s.Sub_Type
From Commodities c
Inner Join Sub_Commodities s ON
c.Id = s.Commodities_ID
SELECT c.Type, s.Sub_Type
FROM dbo.Commodities c INNER JOIN
dbo.Sub_Commodities s ON c.ID = s.Commoditie_ID
WHERE (c.Company_ID LIKE '55')
GROUP BY c.Type, s.Sub_Type