Skip to content

Instantly share code, notes, and snippets.

@salvadorgascon
Created April 9, 2023 02:11
Show Gist options
  • Save salvadorgascon/5b64326db44fa5438dfce3aaf205aaed to your computer and use it in GitHub Desktop.
Save salvadorgascon/5b64326db44fa5438dfce3aaf205aaed to your computer and use it in GitHub Desktop.
Query ignoring accents and ignore case on Microsoft SQL Server
SELECT Clientes.*
FROM Clientes
WHERE UPPER(Nombre) LIKE '%camion%' COLLATE Latin1_general_CI_AI
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment