最佳答案
SELECT * FROM
table a INNER JOIN table b
ON a.id = b.id;
vs。
SELECT a.*, b.*
FROM table a, table b
WHERE a.id = b.id;