3
I have this select
mysql:
SELECT credor.nome, banco.descricao FROM credor
INNER JOIN banco ON (credor.banco = banco.codigo)
He returns me all the creditors and their respective bank, but if the guy’s bank is NULL he just doesn’t return the record to me.
How can I return the record, but in the description stay NULL?