Answers for "mysql create table charset utf8"

SQL
4

create database mysql utf8

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

Converting mysql tables to charset utf8mb4

ALTER TABLE
    table_name
    CONVERT TO CHARACTER SET utf8mb4
    COLLATE utf8mb4_unicode_ci;
Posted by: Guest on April-28-2020

Code answers related to "mysql create table charset utf8"

Code answers related to "SQL"

Browse Popular Code Answers by Language