Click here to Skip to main content
15,793,377 members
Home / Discussions / Database
   

Database

 
GeneralRe: List all tables from a specific database Pin
k505412-Jan-22 5:13
mvek505412-Jan-22 5:13 
GeneralRe: List all tables from a specific database Pin
_Flaviu12-Jan-22 5:32
_Flaviu12-Jan-22 5:32 
GeneralRe: List all tables from a specific database Pin
Richard MacCutchan12-Jan-22 5:39
mveRichard MacCutchan12-Jan-22 5:39 
GeneralRe: List all tables from a specific database Pin
_Flaviu12-Jan-22 6:19
_Flaviu12-Jan-22 6:19 
GeneralRe: List all tables from a specific database Pin
Richard MacCutchan12-Jan-22 6:41
mveRichard MacCutchan12-Jan-22 6:41 
GeneralRe: List all tables from a specific database Pin
_Flaviu12-Jan-22 7:16
_Flaviu12-Jan-22 7:16 
GeneralRe: List all tables from a specific database Pin
Richard MacCutchan12-Jan-22 7:43
mveRichard MacCutchan12-Jan-22 7:43 
AnswerRe: List all tables from a specific database Pin
Sakshi Jain 202213-Jul-22 0:18
Sakshi Jain 202213-Jul-22 0:18 
1. Using SQL Query

To show the list of tables with the corresponding schema name, run this statement:

SELECT * FROM information_schema.tables;

or in a particular schema:

SELECT * FROM information_schema.tables WHERE table_schema = 'schema_name';


2. Using psql

To list all tables:

In all schemas:
\dt *.*

In a particular schema:
\dt schema_name.*

QuestionWampServer localhost Pin
_Flaviu6-Jan-22 7:59
_Flaviu6-Jan-22 7:59 
AnswerRe: WampServer localhost Pin
Graham Breach6-Jan-22 22:10
Graham Breach6-Jan-22 22:10 
GeneralRe: WampServer localhost Pin
_Flaviu7-Jan-22 0:53
_Flaviu7-Jan-22 0:53 
QuestionSQLite sqlite_schema missing Pin
_Flaviu4-Jan-22 5:20
_Flaviu4-Jan-22 5:20 
AnswerRe: SQLite sqlite_schema missing Pin
Richard Deeming4-Jan-22 5:40
mveRichard Deeming4-Jan-22 5:40 
GeneralRe: SQLite sqlite_schema missing Pin
_Flaviu4-Jan-22 8:16
_Flaviu4-Jan-22 8:16 
GeneralRe: SQLite sqlite_schema missing Pin
_Flaviu4-Jan-22 8:17
_Flaviu4-Jan-22 8:17 
QuestionDate and Time Add Incompatibility between sql 2012 and sql 2018 Pin
Medo-I23-Dec-21 8:42
Medo-I23-Dec-21 8:42 
AnswerRe: Date and Time Add Incompatibility between sql 2012 and sql 2018 Pin
Richard Andrew x6423-Dec-21 9:56
professionalRichard Andrew x6423-Dec-21 9:56 
QuestionRe: Date and Time Add Incompatibility between sql 2012 and sql 2018 Pin
CHill6029-Dec-21 6:31
mveCHill6029-Dec-21 6:31 
AnswerRe: Date and Time Add Incompatibility between sql 2012 and sql 2018 Pin
jschell29-Dec-21 8:34
jschell29-Dec-21 8:34 
AnswerRe: Date and Time Add Incompatibility between sql 2012 and sql 2018 Pin
Richard Deeming4-Jan-22 1:44
mveRichard Deeming4-Jan-22 1:44 
QuestionRoelf Pin
floris rudolf vieira22-Dec-21 7:58
floris rudolf vieira22-Dec-21 7:58 
AnswerRe: Roelf Pin
jschell23-Dec-21 7:12
jschell23-Dec-21 7:12 
AnswerRe: Roelf Pin
0x01AA5-Jan-22 5:44
mve0x01AA5-Jan-22 5:44 
QuestionSQL SERVER Pin
ali khan Dec202118-Dec-21 23:36
ali khan Dec202118-Dec-21 23:36 
AnswerRe: SQL SERVER Pin
Richard MacCutchan19-Dec-21 7:57
mveRichard MacCutchan19-Dec-21 7:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.