Posts by Wagner Silva • 1 point
1 post
-
0
votes2
answers3255
viewsA: I need to return the null values of this Inner Join
Try to do as follows below that will return the values NULL: SELECT credor.nome, banco.descricao FROM credor INNER JOIN banco ON ( if(credor.banco is null, 0, credor.banco) = if(banco.codigo is…