I created my database like this:
CREATE DATABASE MYDATABASE WITH ENCODING 'UTF8' LC_COLLATE='ro_RO.utf8' TEMPLATE template0;
And I have a table county
populated with UTF8 county names
This query returns the result as I expect:
SELECT * from county WHERE name='Iași';
(note the comma under s, known as S-comma)
However, this query returns no result:
SELECT * from county WHERE name='Iasi';
(note that the comma has disappeared)
How should I create the database such that the second query also works? I'm switching to postgres, but when I was using MySQL, everything worked fine.