I am making use of mysql 5.0. Is there a way to store a string containing different language other than english? I tried to store the language Kannada but its storing it as "?????". i even tried changing encoding to utf-8, dosent work. (sqlyog)
Asked
Active
Viewed 664 times
3 Answers
0
You should execute this command..
ALTER TABLE CONVERT TO CHARACTER SET utf8 COLLATE utf8_unicode_ci;

Kamal Kishor
- 1
- 2
0
Simply use the following query to change the column as utf8:
ALTER TABLE TableName MODIFY ColumnName VARCHAR(255) CHARACTER SET UTF8;

AT-2017
- 3,114
- 3
- 23
- 39