Difference between revisions of "What are my tables?"
From SQLZOO
| Line 38: | Line 38: | ||
<div class="ecomm e-sqlserver" style="display: none">See also sp_table and table sysobjects.</div> | <div class="ecomm e-sqlserver" style="display: none">See also sp_table and table sysobjects.</div> | ||
</div> | </div> | ||
| − | {{ | + | {{META DATA Ref}} |
Revision as of 14:15, 11 July 2012
Get a list of all tables
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'