A Rails application I'm currently working on uses the character Æ
in some database values. How can I create a SELECT
statement that will treat Æ
and AE
as equal?
e.g.: SELECT * FROM users WHERE lower(name) = 'aether'
should return a row where the value in the name
column is Aether
OR Æther
.