This is just a question regarding JOINS and the different ways that they can be written. I've come across both ways many of times before but have never understood why different people use the different layouts, is it just some people prefer one way over another or is it a case of one method is an older way of doing things or are there performance benefits of one format over the other or is it just down to the SQL your using, Oracle, MSSQL, MySQL etc.?
Example One:
SELECT
m.name
, e.address
FROM member m
, email e
WHERE m.id = e.mid
Example Two:
SELECT
m.name
, e.address
FROM member m
INNER JOIN email e ON m.id = e.mid
No need to go into the usage of LEFT/RIGHT joins etc as I already understand these, just curious as to the above example and any feedback on which people think is the best to use.