1.

MYSQL DATABASE COMMANDS (DATA DEFINITION LANGUAGE;DDL)

Answer»
COMMANDMEANINGSYNTAX
show databaseShows all the databases available in MySQL server. >SHOW DATABASE;
create databaseCreates a new database if it does not exist. >CREATE DATABASE DATABASENAME;
drop databaseTo delete an existing database permanently. >DROP DATABASE  DATABASE_NAME
alter databaseChanges or modifies the characteristics of an existing database. >ALTER DATABASE [DATABASENAME] ALTEROPTION ;
use databaseAllow you to use a particular database or change from the current database to another database. >USE DATABASENAME;



Discussion

No Comment Found