How can I select any person that has two letters "a" in the name, on a PostgreSQL database ?
I try select client from xclient where client like '%a%'
but this return all people that contain "a" in the name. I necessarily need to use "Like".
Should the results include people with two 'a's in their name Example: "Marta". Can't include "Alaia" for example.