Tutorial Create a database and basic commands Mysql

Starting from the Create Database, Delete Database, database Seeing, Enabling database up to View the Table in the database has been activated


Creating Database:

- Create database nama_database; [enter]

Deleting Database:
- Drop database nama_database; [enter]

Looking at the existing database:

- Show databases; [enter]

Enabling Database:

- Use nama_database; [enter]


See Table in the database that has been activated:

- Show tables; [enter]

forward to the next tutorial ..!!

Comments