SQL SHOW DATABASES

The SHOW DATABASES statement is used to list all available databases in a database management system (DBMS).

 

Key Features of SQL SHOW DATABASES

  • Displays a list of all databases in the system.
  • Requires appropriate privileges to view databases.
  • Works in MySQL, MariaDB, and some other database systems.

 

SQL SHOW DATABASES Syntax

SHOW DATABASES;

Output Example:

Database Names

Database Name
information_schema
mysql
performance_schema
test_db

This lists all databases on the server.

 

Using LIKE to Filter Databases

To filter databases by name pattern:

SHOW DATABASES LIKE 'test%';

Output:

Database Name
test_db

This shows only databases that start with "test".

 

Checking Databases in SQL Server

In SQL Server, use the following command instead:

SELECT name FROM sys.databases;

 

Summary

  • SHOW DATABASES lists all databases in MySQL/MariaDB.
  • Use LIKE to filter specific databases.
  • For SQL Server, use sys.databases.