SQL - Structured Query Language

o mysql> SHOW DATABASES; • Switch to an existing database: o mysql> USE • Grant permission to a database to a single user: o mysql> GRANT ALL ON .* TO ; • Create a database: o mysql> CREATE DATABASE ; • Display tables in the current database: o mysql> SHOW TABLES; • View … ................
................