How to display all the tables from a database in SQL? (2024)

  • How-Tos FAQs
  • December 17, 2018

How to display all the tables from a database in SQL? (1)

Different databases have different system views or catalogs to list all the tables in a database. Let us see some ways to check this in a few database systems.

SQL SERVER:

In SQL Server, we have four different ways to list all the tables in a database.

SELECT table_nameFROM INFORMATION_SCHEMA.TABLESWHERE table_type = 'BASE TABLE'SELECT nameFROM sys.tablesSELECT nameFROM sysobjectsWHERE xtype = 'U'SELECT nameFROM sys.objectsWHERE type_desc = 'USER_TABLE'

Oracle

In Oracle, we have three different ways to list all the tables in a database.

-- This returns all the tables in the database system.SELECT table_nameFROM dba_tables-- This returns all the tables which are accessible to the current userSELECT table_nameFROM all_tables-- This returns all the tables which are created by the current userSELECT table_nameFROM user_tables

MySQL:

In MySQL, we can use the below query to list all the tables in the server.

-- Lists all the tables in all databasesSELECT table_nameFROM information_schema.tablesWHERE table_type='BASE TABLE'-- Lists all the tables in a particular databaseSELECT table_nameFROM information_schema.tablesWHERE table_type='BASE TABLE' AND table_schema = 'your_database_name'

Up Next:

Read How to convert month number to month name in SQL?

How to display all the tables from a database in SQL? (2024)
Top Articles
Where is my passion for travel coming from?
Intelligent Automation AI for Business Processes | Nanonets
Ups Customer Center Locations
Thor Majestic 23A Floor Plan
jazmen00 x & jazmen00 mega| Discover
Restored Republic January 20 2023
Pnct Terminal Camera
Prosper TX Visitors Guide - Dallas Fort Worth Guide
Northern Whooping Crane Festival highlights conservation and collaboration in Fort Smith, N.W.T. | CBC News
Naturalization Ceremonies Can I Pick Up Citizenship Certificate Before Ceremony
Apnetv.con
Youtube Combe
Tcu Jaggaer
Shariraye Update
Syracuse Jr High Home Page
Evangeline Downs Racetrack Entries
Char-Em Isd
Gemita Alvarez Desnuda
Acts 16 Nkjv
Unionjobsclearinghouse
Yonkers Results For Tonight
Craigslist Maryland Trucks - By Owner
kvoa.com | News 4 Tucson
Craigslist Lake Charles
Annapolis Md Craigslist
Ullu Coupon Code
Vip Lounge Odu
Mark Ronchetti Daughters
Grove City Craigslist Pets
Baddies Only .Tv
Microsoftlicentiespecialist.nl - Microcenter - ICT voor het MKB
Tamilyogi Ponniyin Selvan
Muma Eric Rice San Mateo
Synchrony Manage Account
拿到绿卡后一亩三分地
Puffco Peak 3 Red Flashes
Caderno 2 Aulas Medicina - Matemática
Muziq Najm
Kelley Blue Book Recalls
Taylor University Baseball Roster
Sabrina Scharf Net Worth
Mid America Irish Dance Voy
Weather Underground Corvallis
Lima Crime Stoppers
Lake Kingdom Moon 31
2007 Jaguar XK Low Miles for sale - Palm Desert, CA - craigslist
Torrid Rn Number Lookup
Mississippi weather man flees studio during tornado - video
Ssc South Carolina
Theater X Orange Heights Florida
Canvas Elms Umd
15:30 Est
Latest Posts
Article information

Author: Chrissy Homenick

Last Updated:

Views: 6103

Rating: 4.3 / 5 (74 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Chrissy Homenick

Birthday: 2001-10-22

Address: 611 Kuhn Oval, Feltonbury, NY 02783-3818

Phone: +96619177651654

Job: Mining Representative

Hobby: amateur radio, Sculling, Knife making, Gardening, Watching movies, Gunsmithing, Video gaming

Introduction: My name is Chrissy Homenick, I am a tender, funny, determined, tender, glorious, fancy, enthusiastic person who loves writing and wants to share my knowledge and understanding with you.