About 5,750,000 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 …

  2. 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 …

  3. 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 …

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

    Oct 8, 2024 · Since I belong to a large organization with massive data, locating a particular table is pretty challenging. So, I have identified a few approaches to do this job efficiently. In this …

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

    Dec 28, 2023 · In this post, I provided a simple SQL query that allows you to search for database tables by name and looked at some alternative ways of getting similar information using the …

  6. 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 …

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

    In this article, we will show you, How to write a SQL Query to Get Table Names from SQL Server Database with multiple examples.

  8. SQL Server Find Table With Column Name - SQL Server Guides

    Jan 5, 2026 · SQL Server Find Table With Column Name Why You Need to Find Tables via Column Names In an ideal world, every database would have a perfect ERD (Entity …

  9. Querying Sql Retrieve Table Names Of Specific Database - sqlpey

    Nov 22, 2024 · In this post, we saw how to get all the table names of a particular database using SQL queries. We looked at a general query that can be used with most popular database …

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

    What is the best way to get the names of all of the tables in a specific database on SQL Server?