I’m using SQLyog 11.42 and MySQL 5.0.51.
I have a problem editing a table that has different column character sets.
(see MySQL manual http://dev.mysql.com/doc/refman/5.0/en/charset-column.html)
CREATE TABLE `aaa` (
`id` int(10) unsigned NOT NULL auto_increment,
`bbb` varchar(100) character set latin2 NOT NULL,
`ccc` varchar(100) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4313 DEFAULT CHARSET=utf8;
If I press F6 in SQLyog there is no way I can see that column “bbb” has a different character set.
How can I see different column character sets?
How can I edit/change column character set?
Best regards,
Daniele