MySQL
MySQL is an open source database engine.
Contents |
[edit] 1 References
[edit] 1.1 O'Reilly Safari Library
- High Performance MySQL
- MySQL Cookbook
- MySQL Stored Procedure Programming
- MySQL Pocket Reference
- Understanding MySQL Internals
- MySQL Database Design and Tuning
- MySQL® Administrator's Guide and Language Reference
[edit] 2 Quick Command Line Notes
[edit] 2.1 Show databases
show databases;
[edit] 2.2 Creating a database
create database DBNAME; # Grant permissions to a user GRANT ALL ON DBNAME.* to 'USER'@'local';