1
Guys, I have two tables and I need to connect them. I’m doing it this way:
SELECT lancamentos .* FROM lancamentos
INNER JOIN clientes ON lancamentos.cliente_id = clientes.id
ORDER BY clientes.nome ASC
But I need to bring the name of the company that is in the client table ... I’m having a hard time with this ...
Thanks Allan, once again you help me .. Thanks !!
– Bruno César