About 1,490 results
Open links in new tab
  1. Get all table names of a particular database by SQL query?

    Oct 12, 2010 · I have tested the query above with SQL Server Management Studio using an SQL Server database of mine and with MySQL Workbench using a MySQL database, and in both cases it gives …

  2. Retrieve All Table Names From a Specific Database Using SQL

    May 17, 2024 · We need to get the names of all tables in a specific database. This is useful for tasks such as documenting databases, exploring their structure, or programmatically interacting with them.

  3. How to Get the Names of the Table in SQL - GeeksforGeeks

    Dec 19, 2024 · This article explains how to use INFORMATION_SCHEMA.TABLES to retrieve table names discusses its syntax and provides examples for both single and multiple database environments.

  4. How to Get the names of the table in SQL - Online Tutorials Library

    In this article, we will explore how to get the names of tables in popular relational database systems including the MySQL, SQL Server, PostgreSQL and Oracle. We will cover the built-in SQL queries …

  5. Query to find table names in a SQL Server database

    Dec 28, 2023 · In this article, I will provide a simple SQL query that you can use to search for tables by their name. I’ll also take a quick look at some alternative approaches you can use to obtain the …

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

    Dec 9, 2025 · In this blog, we’ll dive into the four best methods to list all tables in a SQL Server database using T-SQL. We’ll explore their syntax, output, pros and cons, and provide practical examples to …

  7. SQL List All Tables

    Here you can find the respective SQL command to list all tables in MySQL, PostgreSQL, Oracle, SQL Server, DB2, and SQLite. To list all tables in MySQL, first, you connect to the MySQL database …

  8. How To Find A Table In SQL Server - DataBaseBlogs.com

    Oct 8, 2024 · Knowing the quick approach to finding a table in an SQL server is crucial when you have an extensive database with many tables. You can check out the above methods and decide what …

  9. Get Table Names from SQL Server Database - Tutorial Gateway

    We are using the sys.tables table to find the list of table names. You can also select the required columns from the sys.tables using the below-shown query. By this, you can see the required …

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

    Mar 4, 2021 · If you've forgotten the name of a specific table, or forgotten how to spell a table (was it plural or singular? One word or two with an underscore?), then you can use these queries to show all …