Installation

https://flaviocopes.com/mysql-how-to-install/

brew install mysql

Load data from dump

https://www.digitalocean.com/community/tutorials/how-to-import-and-export-databases-in-mysql-or-mariadb

Start/Stop

mysql.server start

Commands

Logging in

mysql -u root -p

Show stuff

SHOW DATABASES

SHOW TABLES

See a table's schema

DESCRIBE <table_name>