Well, the request you are writing is not a valid request:
Select * from table 1, table 2
Numbers are not allowed as table aliases. In many databases, you can:
select * from table "1", table "2"
If you want numeric aliases.
If you did not expect a space before "1" and "2", the query is equivalent to:
select * from table1 cross join table2
Perfectly acceptable, but the cross join syntax is much preferable.
source share