0
Reborn the programmer around here, I’m having trouble with SQL and ask for help.
I have two tables called orcamentos and clientes.
I need to select all fields in the table orcamentos and only the countryside nome table clientes when the condition orcamentos.id_cliente = clientes.id.
I used up to the moment as follows:
SELECT * FROM orcamentos tab1
INNER JOIN clientes tab2 ON (tab1.id_cliente = tab2.id)
Works, but returns all fields of the client table...