Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
try this one you got full info of tables http://www.sqlite.org/pragma.html#schema – Android Sep 9 '11 at 7:39
1  
The following is a useful GUI for sqlite if you are interested: sqlitestudio.pl Gives you access to view the details of the databases, tables, very quickly and has a nice query editor too... – VenomFangs Apr 17 at 15:40

11 Answers

up vote 190 down vote accepted

It appears you need to go through the *sqlite_master* table, like this:

SELECT * FROM dbname.sqlite_master WHERE type='table';

And then manually go through each table with a SELECT or similar to look at the rows.

The .DUMP and .SCHEMA commands doesn't appear to see the database at all.

share|improve this answer
awesome, thanks. – izb Sep 17 '08 at 13:11
2  
Not something easy to read or remember for use in the future; the builtin .tables command is more intuitive – Gryllida Feb 23 at 22:02
1  
@Gryllida: despite this is usable from any SQL-API as it's valide SQL. Built-in commands may not be supported everywhere. – Valentin Heinitz Apr 8 at 8:36

The are a few steps to see the tables in an SQLite database:

.tables

Will list the tables in your database

.schema tablename

will list how the table looks

and a

SELECT * FROM tablename;

will print the entire table.

.help

to list all of the available SQLite prompt commands.

share|improve this answer
13  
FYI: for a list of all the commands understood, try ".help" at your sqlite3 prompt. – FilmJ Oct 19 '09 at 23:51
1  
I think the first command should be ".table" instead of ".tables" – phongvcao Aug 12 '11 at 12:36
4  
@phngcv in sqlite3 the right command is .tables – develCuy May 27 '12 at 3:25
4  
.table and .tables are both allowed. For that matter, .ta would work as well, since sqlite3 will accept any command that is unambiguous. The name of the command according to the help is indeed ".tables" (if anyone is still paying attention). – dbw Feb 6 at 1:26
1  
(This should be the accepted answer, it is the most sqlite-y way to do things). – dbw Feb 6 at 1:27
show 2 more comments

To show all tables, use

SELECT name FROM sqlite_master WHERE type = "table"

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?

share|improve this answer

Use .help to check for available commands.

.table

This would show all tables under your current database.

share|improve this answer

There is a command available for this on the sqlite command line.

.tables ?PATTERN?      List names of tables matching a LIKE pattern

Which converts to the following SQL

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
share|improve this answer

Try PRAGMA table_info(table-name);
http://www.sqlite.org/pragma.html#schema

share|improve this answer
This is probably the best way to do it. – Alix Axel Jan 31 at 10:42
This only works if you know the name of the table. You can't use this to get the list of table names. – alabamasucks Apr 18 at 14:06

To list the tables you can also do:

SELECT name FROM sqlite_master
WHERE type='table';
share|improve this answer

The .tables, and .schema "helper" functions don't look into ATTACHed databases: they just query the SQLITE_MASTER table for the "main" database. Consequently, if you used

ATTACH some_file.db AS my_db;

then you need to do

SELECT name FROM my_db.sqlite_master WHERE type='table';

Note that temporary tables don't show up with .tables either: you have to list sqlite_temp_master for that:

SELECT name FROM sqlite_temp_master WHERE type='table';
share|improve this answer

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

So... (assume your o/s command line prompt is $) instead of

$sqlite3

sqlite3> ATTACH database.sqlite as "attached"

from your o/s command line, open the database directly

$sqlite3 database.sqlite

sqlite3> .dump

share|improve this answer

According to the documentation, the equivalent of MySQLs' SHOW TABLES; is:

The ".tables" command is similar to setting list mode then executing the following query:

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;

However, if you are checking if a single table exists (or to get its details), see @LuizGeron answer.

share|improve this answer

The ".schema" commando will list available tables and their rows, by showing you the statement used to create said tables:

sqlite> create table_a (id int, a int, b int);
sqlite> .schema table_a
CREATE TABLE table_a (id int, a int, b int);
share|improve this answer

protected by Community Sep 17 '11 at 23:31

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.