Difference between revisions of "What are my tables?"
From SQLZOO
| Line 1: | Line 1: | ||
Get a list of all tables | Get a list of all tables | ||
<div class='ht'> | <div class='ht'> | ||
| + | <div class=params>schema:scott</div> | ||
<div> | <div> | ||
We should expect to find a system table that includes a list of tables. | We should expect to find a system table that includes a list of tables. | ||
Revision as of 09:38, 12 July 2012
Get a list of all tables
schema:scott
We should expect to find a system table that includes a list of tables. We should expect this to contain a great deal of extra data that is hard to understand.
SELECT * FROM sqlite_master WHERE TYPE='table'
SELECT * FROM syscat.TABLES WHERE tabschema = 'SCOTT'
SELECT Name FROM MSysObjects WHERE TYPE=1 AND Flags=0
SELECT tablename FROM pg_tables WHERE tableowner = CURRENT_USER
SELECT * FROM cat
SELECT * FROM sysobjects WHERE xtype='U'
SHOW TABLES
SELECT * FROM information_schema.TABLES WHERE table_type='BASE TABLE'
SELECT * FROM sysobjects WHERE TYPE='U'
What are my tables?