Skip to content

Commit

Permalink
Merge pull request rstacruz#1315 from yrammos/patch-1
Browse files Browse the repository at this point in the history
Add schema for USE command.
  • Loading branch information
rstacruz authored Jan 4, 2020
2 parents b115573 + 86918eb commit bc51528
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ layout: 2017/sheet
category: Databases
---

### Create / Delete Database
### Create / Open / Delete Database

```sql
CREATE DATABASE dbNameYouWant
CREATE DATABASE dbNameYouWant CHARACTER SET utf8
USE dbNameYouWant
DROP DATABASE dbNameYouWant
ALTER DATABASE dbNameYouWant CHARACTER SET utf8
```
Expand Down

0 comments on commit bc51528

Please sign in to comment.