Mysql Step by Step Guide
Mysql Step by Step Guide
Step-by-Step Guide for Creating a Database and Working with MySQL Command Line
1. Install MySQL:
2. Start MySQL:
mysql -u root -p
SHOW DATABASES;
6. Select a Database:
USE database_name;
7. Create a Table:
CREATE TABLE table_name (
...
);
UPDATE table_name
WHERE condition;
WHERE condition;
DESCRIBE table_name;
14. Create a New User:
exit;
- Exit: exit;