I have sql table, where there is a field
first_name varchar(255) NOT NULL DEFAULT
And i have "'Р˜РіРѕСЂСЊ'", who can help to convert to readable text?
I have sql table, where there is a field
first_name varchar(255) NOT NULL DEFAULT
And i have "'Р˜РіРѕСЂСЊ'", who can help to convert to readable text?
You may need to change collation of your table The collation effects to string comparing/sorting only. to Cyrillic_General_CI_AS
.