Si se quiere buscar si el nombre o los apellidos que hay guardados en una tabla llevan tilde, se puede usar esta query.
select * from Personas
WHERE nombre LIKE '%[àáâä]%' OR nombre LIKE '%[èéêë]%' OR nombre LIKE '%[ìíîï]%' OR nombre LIKE '%[òóôö]%' OR nombre LIKE '%[ùúûü]%' OR
ape1 LIKE '%[àáâä]%' OR ape1 LIKE '%[èéêë]%' OR ape1 LIKE '%[ìíîï]%' OR ape1 LIKE '%[òóôö]%' OR ape1 LIKE '%[ùúûü]%' OR
ape2 LIKE '%[àáâä]%' OR ape2 LIKE '%[èéêë]%' OR ape2 LIKE '%[ìíîï]%' OR ape2 LIKE '%[òóôö]%' OR ape2 LIKE '%[ùúûü]%'