-
Notifications
You must be signed in to change notification settings - Fork 0
MySQL
andrzejsydor edited this page Mar 28, 2018
·
2 revisions
https://hub.docker.com/_/mysql/
Access monitor: mysql -u [username] -p;
Show all databases: show databases;
Access database: mysql -u [username] -p[password] [database];
Select database: use [database];
Connect database: connect [database];
CREATE DATABASE db_name;
USE db_name;