Answers for "create a new database in mysql and set utf8"

SQL
4

create database mysql utf8

CREATE DATABASE mydatabase CHARACTER SET utf8 COLLATE utf8_general_ci;
Posted by: Guest on March-26-2020
1

mysql create database utf8

CREATE DATABASE mydatabase CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
Posted by: Guest on September-24-2020

Code answers related to "create a new database in mysql and set utf8"

Code answers related to "SQL"

Browse Popular Code Answers by Language