4
What is the difference between doing the two queries below, one with and the other without INNER JOIN? What is the most appropriate?
SELECT p.Descricao as Produto, c.Descricao as Categoria FROM Produto p, Categoria c
WHERE p.CategoriaId = c.CategoriaId
SELECT p.Descricao as Produto, c.Descricao as Categoria FROM Produto p
INNER JOIN Categoria c ON p.CategoriaId = c.CategoriaId