How do I list the tables in a SQLite database file - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T19:48:35Zhttp://stackoverflow.com/feeds/question/82875http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/82875/how-do-i-list-the-tables-in-a-sqlite-database-file4How do I list the tables in a SQLite database fileizb2008-09-17T12:59:53Z2009-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#828898Answer by Lasse V. Karlsen for How do I list the tables in a SQLite database fileLasse V. Karlsen2008-09-17T13:01:48Z2008-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#828995Answer by Mark Janssen for How do I list the tables in a SQLite database fileMark Janssen2008-09-17T13:02:51Z2008-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#829170Answer by Rafał Dowgird for How do I list the tables in a SQLite database fileRafał Dowgird2008-09-17T13:04:57Z2008-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#829200Answer by trf for How do I list the tables in a SQLite database filetrf2008-09-17T13:05:20Z2008-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#829301Answer by Christian Davén for How do I list the tables in a SQLite database fileChristian Davén2008-09-17T13:06:03Z2008-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#829351Answer by flubba for How do I list the tables in a SQLite database fileflubba2008-09-17T13:06:30Z2008-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#831951Answer by Anthony Williams for How do I list the tables in a SQLite database fileAnthony Williams2008-09-17T13:30:00Z2008-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#4946432Answer by Noah for How do I list the tables in a SQLite database fileNoah2009-01-30T06:19:48Z2009-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>