L
L
lalala davaipoidemctoboiuda2018-03-25 14:26:09
Habr
lalala davaipoidemctoboiuda, 2018-03-25 14:26:09

HOW TO BREAK THE GRIFPER'S HOUSE IN MINECRAFT A?

I ASK YOU DO YOU UNDERSTAND OR NOT

Answer the question

In order to leave comments, you need to log in

2 answer(s)
E
Ernest Faizullin, 2018-03-25
@alexcleens

# Для всей базы
ALTER DATABASE
    database_name
    CHARACTER SET = utf8mb4
    COLLATE = utf8mb4_unicode_ci;

# Для одной таблицы
ALTER TABLE
    table_name
    CONVERT TO CHARACTER SET utf8mb4
    COLLATE utf8mb4_unicode_ci;

# Для одного поля таблицы
ALTER TABLE
    table_name
    CHANGE column_name column_name
    VARCHAR(191)
    CHARACTER SET utf8mb4
    COLLATE utf8mb4_unicode_ci;

I would not advise putting utf8mb4 entirely on the entire database (on weak machines there will be a blockage) since this requires enough memory, it is better to change only the fields you need, mainly these are fields that can contain smilies, hieroglyphs and other non-standard strings

A
Andrey Tsvetkov, 2018-03-25
@yellow79

Need a special encoding (utf8mb4) for fields with emoji
https://ifmo.su/mysql-and-emoji

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question