OSDN Git Service

Regular updates
authorErik <erikgronwal@users.osdn.me>
Sat, 4 Jan 2020 14:55:06 +0000 (23:55 +0900)
committerErik <erikgronwal@users.osdn.me>
Sat, 4 Jan 2020 14:55:06 +0000 (23:55 +0900)
homebrew.md
mysql.md

index d510af1..5ea89ec 100644 (file)
@@ -27,6 +27,7 @@ category: CLI
 | `brew edit git`            | Edit this formula           |
 | `brew cat git`             | Print this formula          |
 | `brew home git`            | Open homepage               |
+| `brew search git`          | Search for formulas         |
 
 ### Global commands
 
index 2f369e0..fef4598 100644 (file)
--- a/mysql.md
+++ b/mysql.md
@@ -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
 ```