How do I list the tables in a SQLite database file - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T19:48:35Z http://stackoverflow.com/feeds/question/82875 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file 4 How do I list the tables in a SQLite database file izb 2008-09-17T12:59:53Z 2009-02-14T00:58:14Z <p>What SQL can be used to list the tables, and the rows within those tables, in a SQLite database file once i've ATTACHed it on the sqlite3 command line tool?</p> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/82889#82889 8 Answer by Lasse V. Karlsen for How do I list the tables in a SQLite database file Lasse V. Karlsen 2008-09-17T13:01:48Z 2008-09-17T13:07:45Z <p>It appears you need to go through the *sqlite_master* table, like this:</p> <pre><code>SELECT * FROM dbname.sqlite_master WHERE type='table'; </code></pre> <p>And then manually go through each table with a SELECT or similar to look at the rows.</p> <p>The .DUMP and .SCHEMA commands doesn't appear to see the database at all.</p> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/82899#82899 5 Answer by Mark Janssen for How do I list the tables in a SQLite database file Mark Janssen 2008-09-17T13:02:51Z 2008-09-17T13:18:19Z <p>.tables</p> <p>Will list the tables in your database</p> <p>.schema tablename</p> <p>will list how the table looks</p> <p>and a</p> <p>Select * from tablename</p> <p>will print the entire table..</p> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/82917#82917 0 Answer by Rafał Dowgird for How do I list the tables in a SQLite database file Rafał Dowgird 2008-09-17T13:04:57Z 2008-09-17T13:04:57Z <p>To list the tables you can also do:</p> <p>SELECT name FROM sqlite_master WHERE type='table';</p> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/82920#82920 0 Answer by trf for How do I list the tables in a SQLite database file trf 2008-09-17T13:05:20Z 2008-09-17T13:05:20Z <p>The ".schema" commando will list available tables and their rows, by showing you the statement used to create said tables:</p> <pre> sqlite> create table_a (id int, a int, b int); sqlite> .schema table_a CREATE TABLE table_a (id int, a int, b int); </pre> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/82930#82930 1 Answer by Christian Davén for How do I list the tables in a SQLite database file Christian Davén 2008-09-17T13:06:03Z 2008-09-17T13:06:03Z <p>To show all tables, use</p> <pre><code>SELECT name FROM sqlite_master WHERE type = "table" </code></pre> <p>To show all rows, I guess you can iterate through all tables and just do a SELECT * on each one. But maybe a DUMP is what you're after?</p> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/82935#82935 1 Answer by flubba for How do I list the tables in a SQLite database file flubba 2008-09-17T13:06:30Z 2008-09-17T13:06:30Z <p>There is a command available for this on the sqlite command line. </p> <pre><code>.tables ?PATTERN? List names of tables matching a LIKE pattern </code></pre> <p>Which converts to the following SQL</p> <pre><code>SELECT name FROM sqlite_master WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%' UNION ALL SELECT name FROM sqlite_temp_master WHERE type IN ('table','view') ORDER BY 1 </code></pre> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/83195#83195 1 Answer by Anthony Williams for How do I list the tables in a SQLite database file Anthony Williams 2008-09-17T13:30:00Z 2008-09-17T13:30:00Z <p>The <code>.tables</code>, and <code>.schema</code> "helper" functions don't look into ATTACHed databases: they just query the <code>SQLITE_MASTER</code> table for the "main" database. Consequently, if you used</p> <pre><code>ATTACH some_file.db AS my_db; </code></pre> <p>then you need to do</p> <pre><code>SELECT name FROM my_db.sqlite_master WHERE type='table'; </code></pre> <p>Note that temporary tables don't show up with <code>.tables</code> either: you have to list <code>sqlite_temp_master</code> for that:</p> <pre><code>SELECT name FROM sqlite_temp_master WHERE type='table'; </code></pre> http://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file/494643#494643 2 Answer by Noah for How do I list the tables in a SQLite database file Noah 2009-01-30T06:19:48Z 2009-01-30T06:19:48Z <p>The easiest way to do this is to open the database directly and use the .dump command, rather than attaching it after invoking the sqlite3 shell tool</p> <p>So... (assume your o/s command line prompt is $) instead of </p> <p><strong>$</strong>sqlite3</p> <p><strong>sqlite3></strong> ATTACH database.sqlite as "attached"</p> <p>from your o/s command line, open the database directly</p> <p><strong>$</strong>sqlite3 database.sqlite</p> <p><strong>sqlite3></strong> .dump</p>