Database Statements
Comment
# This comment continues to the end of the line-- This comment continues to the end of the line/* This is an in-line or multiple-line comment */Get the Version of Database
SELECT version();Create a New Database
CREATE DATABASE `database_name`;List all Database Name
Get the Character Set and Collection
Create a New Database including Character Set and Collection
Use a Database
Get the currently selected Database
Drop a Database
Alter Database
Backup Database
Notes:
Last updated