Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Ich möchte, dass die MySQL-Tabelle zwei Sprachen unterstützt

Als Beispiel zum Erstellen einer neuen Tabelle mit utf-8-Kodierung sollte dies für Sie funktionieren;

CREATE TABLE IF NOT EXISTS `test` (
  `id` int(10) NOT NULL,
  `name` varchar(10)
  collate utf8_unicode_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;