Skip to content

Create a database schema with the Correct Collation

Create a MySQL database schema with the Correct Collation#

CREATE DATABASE mydb CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

Source#