About 4,070,000 results
Open links in new tab
  1. SQL List All Tables

    This tutorial shows you how to use commands to list all tables of a specified database in MySQL, PostgreSQL, Oracle, SQL Server, DB2, and SQLite.

  2. How do I get list of all tables in a database using TSQL?

    Adding WHERE TABLE_TYPE='BASE TABLE' will include only base tables (and by extension you could always use WHERE TABLE_TYPE != 'VIEW'). "sysdiagrams" appears in this list too : ( sysdiagrams …

  3. SQL Show Tables: List All Tables in a Database

    Mar 4, 2021 · There are a few ways to list tables in MySQL. You can run the command SHOW TABLES once you have logged on to a database to see all tables.

  4. How to Get List of All Tables in a SQL Server Database Using TSQL: …

    Dec 9, 2025 · How to Get List of All Tables in a SQL Server Database Using TSQL: Best Methods Whether you’re documenting a database, migrating data, auditing schema changes, or simply …

  5. SQL SHOW TABLES: List Tables (Listing Tables) in Database with …

    Learn how to display all tables in a SQL Server database using SQL queries. This guide covers different methods, including system views and commands, to retrieve a complete list of tables.

  6. SQL - Show Tables - GeeksforGeeks

    Jul 23, 2025 · Whether you are the database administrator, a developer or an analyst being able to list the tables within the database is a crucial skill. In this article, we will develop the various methods to …

  7. Different Ways to Populate the List of Tables - SQLServerCentral

    Apr 26, 2024 · Using information_schema.tables, you can query information about the tables in a database to help you understand the schema and structure of the database. We can use …

  8. SQL - Show Tables (Listing Tables) - Online Tutorials Library

    This could be done for testing purposes, to identify any existing tables before adding or removing any, or for any other reason. This tutorial will discuss how we can list down all the table in MySQL, SQL …

  9. How to List Tables in SQL: A Simple Example - BuildPWR

    Nov 1, 2024 · In this guide, we’ll cover the most common ways to retrieve a list of tables in SQL with straightforward examples. 1. Using INFORMATION_SCHEMA.TABLES. Most SQL databases, like …

  10. How to List All Tables in a Database - iheavy

    May 6, 2025 · In database management, understanding how to list all the tables within a database is a fundamental skill. Whether you are a database administrator, developer, or data analyst, knowing …