SQL SELECT DATABASE

The USE statement is used to select a specific database to work with in MySQL and MariaDB. Once selected, all subsequent queries will run within that database.

 

Key Features of SQL SELECT DATABASE

  • Sets the active database for executing queries.
  • Works in MySQL and MariaDB.
  • Does not work in SQL Server or PostgreSQL (alternative methods required).

 

SQL SELECT DATABASE Syntax

USE database_name;

Example:

USE test_db;

This sets test_db as the active database.

 

Checking the Current Database

To check which database is currently selected, use:

SELECT DATABASE();

Output Example:

DATABASE()
test_db

 

Selecting a Database in SQL Server

In SQL Server, use:

USE test_db;
GO

Or check the current database with:

SELECT DB_NAME();

 

Summary

  • USE database_name; selects a database in MySQL/MariaDB.
  • Use SELECT DATABASE(); to check the current database.
  • SQL Server and PostgreSQL require different commands (USE, \c).