Posts by Thiago Tolentino • 1 point
2 posts
-
0
votes1
answer1012
viewsA: Invalid identifier during select SQL - Oracle
The solution I found guided by the comments that were made was: SELECT CLIENTE.ID,CLIENTE.CPF FROM CLIENTE INNER JOIN CIDADE ON CIDADE.ID = CLIENTE.IDCIDADE WHERE NOT EXISTS(SELECT * FROM LIGACAO…
-
0
votes1
answer1012
viewsQ: Invalid identifier during select SQL - Oracle
I am trying to seek information according to the business rule, which in case is ID and CPF of the Client of a certain City and this client in question can not have Debito active, but the ways I am…