MySQL Notes
From Brandonhutchinson.com
- To list the databases on a MySQL server:
show databases;
- To select a database on a MySQL server:
use database;
- To list the tables in a MySQL database:
show tables;
- To securely provide a user password automatically, place user passwords within the [client] section of ~/.my.cnf. The file should have 600 or 400 permissions. e.g.,
[client] password="password"
