The question is in the title. The code is
SELECT SalesLT.Product.Name
,SalesLT.Product.Color
,SalesLT.Product.StandardCost
,SalesLT.Product.ListPrice
,SalesLT.Product.ListPrice - SalesLT.Product.StandardCost AS Profit
,SalesLT.ProductModel.Name AS SubCatNameType
,SalesLT.Product.ListPrice
,SalesLT.Product.Name AS SubCatName
FROM SalesLT.Product INNER JOIN
SalesLT.ProductModel ON SalesLT.ProductModel.ProductModelID = SalesLT.ProductModel.ProductModelID
Many thanks