vimwiki

Mysql

Connection

Use this syntax: mysql -u[user name] -p[passwd]

mysql -ubob -pmyPasswd

Create DB

CREATE DATABASE myDb;

Manage a DB

Before managing a BD, you need to select one with use.

USE myBD;