Professor, pode-se afirmar que as 2 querys abaixo são iguais? Trarão o mesmo resultado e com o mesmo tempo de execução (performance)?
Query 1 - Utilizando INNER JOIN
SELECT f.matricula, f.nome, count(*)
FROM funcionario f
INNER JOIN vendas v
ON f.matricula = v.matricula
GROUP BY f.matricula, f.nome
Query 2 - Sem utilizar INNER JOIN
SELECT f.matricula, f.nome, count(*)
FROM funcionario f, vendas v
WHERE f.matricula = v.matricula
GROUP BY f.matricula, f.nome