I have the SQL for postgres:
select * from a,b where a.id=b.id
and I get the same length of rows (answers) and columns in the next sql:
SELECT * FROM a INNER JOIN b ON a.id=b.id
I'm really confuse for this. a from a,b is a implicit INNER JOIN ?