2

I executed an SQLite query, but I got a result that is not in the order that we need,the character "á" is being shown after z.

How can I configure my query to ignore special characters?

jonsca
  • 10,218
  • 26
  • 54
  • 62

1 Answers1

1

Not sure if you just want to ignore all the results having these special characters or you have difficulties in sorting the result.

You can treat this as a hint (not an answer):

SELECT * 
FROM _table-name_ 
WHERE _column-name_ COLLATE Latin1_General_BIN NOT LIKE '%[^ a-zA-Z]%'
wattostudios
  • 8,666
  • 13
  • 43
  • 57
PCM
  • 873
  • 8
  • 23