View difference between Paste ID: dr6MLktb and 1X67jn2e
SHOW: | | - or go back to the newest paste.
1-
-- Bad Case: JOIN FROM small_table to large_table
1+
-- Good Case: JOIN FROM large_table to small_table
2-
SELECT * FROM small_table, large_table
2+
SELECT * FROM large_table, small_table
3-
WHERE small_table.id = large_table.id
3+
WHERE large_table.id = small_table.id