I'm just curious, if i have table a and table b.
I write query 1:
SELECT * FROM table a INNER JOIN table b ON table a.id = table b.id I write query 2:
SELECT * FROM table b INNER JOIN table a ON table b.id = table a. id What is the difference both of above query?
Thank you