DATABASE

SQL DATABASE Keyword

The DATABASE keyword is used with SQL commands like CREATE and DROP to manage whole databases. You can create new databases to store tables and data separately or delete existing ones when they are no longer needed.

Tutorials dojo strip

SQL CREATE DATABASE Syntax

SQL

SQL CREATE DATABASE Example

This statement creates a new database named testDB.

SQL

Note: This command will not work in SQLite including our TechKubo playground. In SQLite, databases are created as individual files outside SQL, usually through our application or file system. The playground automatically loads a built-in database that you can use without needing to create one.

SQL SHOW DATABASES Syntax

This command is used to list all available databases.

SQL

Note: This command is not supported in SQLite. It works in systems like MySQL.

SQL DROP DATABASE Syntax

SQL

SQL DROP DATABASE Example

This deletes the entire database named testDB, including all its tables and data.

SQL

Note: This command is also not supported in SQLite. In SQLite, you delete a database by deleting the file manually from your file system.

SQL DATABASE Labs

Tutorials dojo strip