Problem with Inner Join

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

A name can't start with a digit (0-9) unless you enclose it in bracket or double quotes.

I also can't tell what the actual table names and column names are. Is "SalesLT.Product" the table name (schema SalesLT) or is that dbo.SalesLT and column name "Product".


SELECT
[11].AK_Product_Name ...