Quantcast
Channel: What web developer needs? » MySQL
Viewing all articles
Browse latest Browse all 3

MySQL Database Character Set

$
0
0

Change DB charset – To show the current character set use this query: SHOW CREATE DATABASE `DB_NAME` ALTER DATABASE `database_utf8` CHARACTER SET ‘utf8′; ALTER DATABASE `database_utf8` COLLATE ‘utf8_general_ci'; Change table charset – ALTER TABLE `table_name` CONVERT TO CHARACTER SET ‘utf8′;

The post MySQL Database Character Set appeared first on What web developer needs?.


Viewing all articles
Browse latest Browse all 3

Trending Articles