I have DB2 and I have the following Query
SELECT t1.MyName, t2.MySalary
FROM Employee t1 CROSS JOIN Salary t2
I got the following Exception :
An unexpected token "CROSS" was found following "me FROM "Employee" t1 ". Expected tokens may include: "".. SQLCODE=-104, SQLSTATE=42601
me FROM "Employee" t1in the query in the question. - Gordon Linoff