SQL SHOW TABLES

The SHOW TABLES statement is used to list all tables in the currently selected database.

 

Key Features of SQL SHOW TABLES

  • Displays a list of tables present in the selected database.
  • Helps verify the existence of tables before performing operations.
  • Works in MySQL, MariaDB, and some other database systems.

 

SQL SHOW TABLES Syntax

SHOW TABLES;

 

Example: Listing All Tables

USE my_database;
SHOW TABLES;
  • Selects the my_database and displays all tables in it.

 

Example Output

Tables_in_my_database
Employees
Departments
Projects

 

Alternative Commands for Other Databases

Database Commands

Database Command
MySQL/MariaDB SHOW TABLES;
PostgreSQL SELECT table_name FROM information_schema.tables WHERE table_schema = 'public';
SQL Server SELECT name FROM sys.tables;
Oracle SELECT table_name FROM user_tables;

 

Summary

  • SHOW TABLES lists all tables in the current database.
  • Works mainly in MySQL and MariaDB.
  • Use alternative queries for PostgreSQL, SQL Server, and Oracle.