I have a question to you.
I have table where I'm saving names of groups and I can save name with polish characters but this saving like this:
id | name |
---|---|
123 | Zarny |
When my name is Żarny
.
And when I do select something like this
SELECT *
FROM this_table
WHERE name = 'Zarny'
or
SELECT *
FROM this_table
WHERE name = 'Żarny'
it returns me totally nothing.
Do you have any idea what can I do?