3
I learned to do SQL queries with joins as follows:
SELECT u.NOME, e.RUA
FROM usuarios u, endereco e
WHERE e.ID_USUARIO = u.ID
ORDER BY u.NOME
As you can see, the query searches the name of users and the street of their address (using nicknames to simplify table names). About how this query was structured, the doubts are as follows:
This is a simplified way of making joins by not explicitly using JOIN, LEFT ON and type instructions?
How would the same query be using the join instructions explicitly?