広告のパーソナライゼーション、リマーケティング、広告のパフォーマンス分析など、広告に使用されるクッキーを管理します。
2.6.1.17. Change database charset
You can view the list of available charsets using the SQL query:
SHOW CHARACTER SET
- Connect to the database using phpMyAdmin or any MySQL client.
- To change the charset, execute the appropriate SQL query:
ALTER DATABASE `database_name` COLLATE colation; SELECT @@collation_database;database_name— specify the name of the database for which you need to change the collation.collation— specify the desired collation, for exampleutf8mb4_unicode_ci.
ALTER TABLE `table_name` COLLATE collation;table_name— specify the name of the table for which you need to change the collation.collation— specify the desired collation, for exampleutf8mb4_unicode_ci.
ALTER TABLE `table_name` CHANGE `field_name` VARCHAR(40) CHARACTER SET charset COLLATE collation;table_name— specify the name of the table in which you want to change the charset of the specified field.field_name— specify the name of the field for which you need to change the charset.charset— specify the required charset, for exampleutf8mb4.collation— specify the desired collation, for exampleutf8mb4_unicode_ci.
(1)