猫言猫语

严以律己·宽以待人·自强不息·知行合一

在 MySQL 8.0 中创建 utf8mb4 编码的新数据库

| 在 MySQL 8.0 中创建 utf8mb4 编码的新数据库已关闭评论

这样就可以创建一个名为 helloworld 的数据库

create database helloworld default character set utf8mb4 collate utf8mb4_unicode_ci;
mysql> create database helloworld default character set utf8mb4 collate utf8mb4_unicode_ci;
Query OK, 1 row affected (0.04 sec)

评论已关闭。