mysql中如何在建立數據庫的時候指定數據庫的字符集?

需求描述:mysql

  在建立DB的時候指定字符集.sql

操做過程:數據庫

1.使用create database語句建立數據庫spa

mysql> create database if not exists test03 default character set = 'utf8';
Query OK, 1 row affected (0.00 sec)

備註:經過default character set = 語句來指定DB的字符集.code

2.查看建立的DB的字符集orm

mysql> select schema_name,default_character_set_name from information_schema.schemata where schema_name = 'test03'; +-------------+----------------------------+
| schema_name | default_character_set_name |
+-------------+----------------------------+
| test03      | utf8                       |
+-------------+----------------------------+
1 row in set (0.00 sec)

備註:經過系統表schemata查看能夠知道,DB的字符集是utf8的.同時,數據庫的字符集是utf8,那麼在這個數據庫下建立的表的字符集也都是utf8的.也就是數據庫的字符集對於後續建立的表是有影響的.blog

 

文檔建立時間:2018年6月1日14:27:07文檔

相關文章
相關標籤/搜索