I have this select
of MySQL:
SELECT credor.nome, banco.descricao FROM credor
INNER JOIN banco ON (credor.banco = banco.codigo)
It returns me all the lenders and their respective bank, but if the bank of the guy is NULL it just does not return the registry.
How can I do to return the record but in the description get NULL?