hello I am learning SQL and want to know what is the best way to perform a JOIN operation with 2 or more tables, i tried this query:
SELECT d.name, c.group, e.name as extra_name
FROM drinks d, combos c, extras e
WHERE d.id = c.drinks_id AND e.id = c.extras_id
This query works fine, this is a bad practice? or i must to use a INNER JOIN clause to do an join operation? thanks for your replies