SELECT
1.AK_Product_Name
,22.AK_ProductCategory_Name
FROM
SalesLT.Product
INNER JOIN SalesLT.ProductCategory
ON 1.SalesLT.Product AS 11=22.SalesLT.ProductCategory
Can someone please explain what I am getting wrong with my syntax?
The problem appears to be with th last line as I get a red squiggle under 1.SalesLT.
Many thanks