0
next, I have a table of people:
[name, license plate, Cpf]
What happens is, some people who have the "same" Cpf have different enrollments. [Same] is in quotes, 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
It has a way without regex tbm, it has to be with regex?
– Sorack