0
1
llucycodes42
The code instructs MySQL to set the character set for the table to UTF-8, and the Collate column to UTF-8_UNICODE_CI.
Shortcut: s_alter_table_charset
ALTER TABLE `table` CHARACTER SET utf8 COLLATE utf8_unicode_ci;
0
1
llucycodes42
The code instructs MySQL to set the character set for the table to UTF-8, and the Collate column to UTF-8_UNICODE_CI.
Shortcut: s_alter_table_charset
ALTER TABLE `table` CHARACTER SET utf8 COLLATE utf8_unicode_ci;