Reputation: 83
I've created a table lets say Example. And insert values, as follows:
insert into Example (column1)
values ('оарвыларфдл');
Then I try to select the data from table and the output is: ??????????
Upvotes: 1
Views: 2173
Reputation: 55009
You've messed up your character sets somewhere: the table, the connection, the output, or some combination of these is using an incorrect character set - so make sure they all match and use a character set that can represent your characters - UTF-8 is generally the best choice, because it can represent everything.
It is not possible to be more exact than this, because you have not provided any information about which character sets each of those things are using.
Upvotes: 1