Next, I have a people table:
[name, enrollment, cpf]
What happens is, some people who have the "same" cpf have different license plates. The [same] is in quotation marks, because in the database, there are cpfs like in this example:
1) 00000000000 2) 000,000,000-00
And I need to do a query, searching for a cpf of the first example, and postgresql "understand" that the second option is also valid for me ..
How to do this?
SELECT * FROM people WHERE cpf = ???????
Thank you