I see some people do joins like this
SELECT * FROM table1
JOIN table 2
ON table1_id = table2_id
where as some people do this
SELECT *
FROM table1
WHERE table1.table1_id = tabl2.table2_id;
whats the difference and what is more efficient and benificial
Here’s why