This commit is contained in:
veypi
2020-12-21 10:40:31 +08:00
parent db7b3a2889
commit ce3e1a284d
21 changed files with 1280 additions and 13 deletions
+12
View File
@@ -58,3 +58,15 @@ character_set_connection=utf8
character_set_server=utf8
```
### 指令
```mysql
show databases;
create database dbtest CHARACTER SET utf8 COLLATE utf8_general_ci;
use dbtest;
```