Skip to content

Commit

Permalink
Fix a typo in Update character-set-and-collation.md (#6124)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joyinqin authored Apr 23, 2021
1 parent a8069d0 commit 41d6eac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions character-set-and-collation.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ ALTER DATABASE db_name
{{< copyable "sql" >}}

```sql
CREATE SCHEMA test1 CHARACTER SET utf8mb4 COLLATE uft8mb4_general_ci;
CREATE SCHEMA test1 CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
```

```sql
Expand All @@ -201,7 +201,7 @@ SELECT @@character_set_database, @@collation_database;
+--------------------------|----------------------+
| @@character_set_database | @@collation_database |
+--------------------------|----------------------+
| utf8mb4 | uft8mb4_general_ci |
| utf8mb4 | utf8mb4_general_ci |
+--------------------------|----------------------+
1 row in set (0.00 sec)
```
Expand Down

0 comments on commit 41d6eac

Please sign in to comment.