Want to create interactive content? It’s easy in Genially!

Over 30 million people create interactive content in Genially.

Check out what others have designed:

Transcript

DATABASE RELATED COMMANDS

go!

The CREATE DATABASE statement is used to create a new SQL database. Syntax CREATE DATABASE databasename;

The SQL CREATE DATABASE Statement

VIEW YOUR DATABASEOnce a database is created, you can check it in the list of databases with the following SQL command: Syntax SHOW DATABASES;

The SQL DROP DATABASE StatementThe DROP DATABASE statement is used to drop an existing SQL database. Syntax DROP DATABASE databasename;

The USE statement This tells MySQL to use the named database as the default (current) database for subsequent statements. SyntaxUSE db_name