2
Well, I created a table called installments, that when the customer pays it is inserted 'PAID' in the column situation, and when not paid it remains blank. I wanted to fetch the information from that column to know when the account has not been paid, so bring only customers who have empty situation column.
Example:
select * from parcela where situacao =''
But it does not bring the data of the situation table and when I put:
select * from parcela where situacao ='PAGO'
It brings the data perfectly
solved this: https://answall.com/questions/99229/howtoverifica-se-um-campo-do-tipo-text-ou-ntext-%C3%A9-null-or-empty
– Victorprvt
You can answer your own question, so it is not being visited with the issue already solved.
– Gustavo Fragoso