参见英文答案 >
Is there an SQLite equivalent to MySQL’s DESCRIBE [table]?5个答案如何在Oracle中查看
SQLite中的表结构?
在数据库文件上调用sqlite3实用程序,并使用其特殊的点命令:
原文链接:https://www.f2er.com/sqlite/198436.html> .tables将列出表
> .schema [tablename]将显示一个或多个表的CREATE语句
还有许多其他有用的内置点命令 – 参见http://www.sqlite.org/sqlite.html的文档,sqlite3的特殊命令部分。
例:
sqlite> entropy:~/Library/Mail>sqlite3 Envelope\ Index sqlite version 3.6.12 Enter ".help" for instructions Enter sql statements terminated with a ";" sqlite> .tables addresses ews_folders subjects alarms Feeds threads associations mailBoxes todo_notes attachments messages todos calendars properties todos_deleted_log events recipients todos_server_snapshot sqlite> .schema alarms CREATE TABLE alarms (ROWID INTEGER PRIMARY KEY AUTOINCREMENT,alarm_id,todo INTEGER,flags INTEGER,offset_days INTEGER,reminder_date INTEGER,time INTEGER,argument,unrecognized_data BLOB); CREATE INDEX alarm_id_index ON alarms(alarm_id); CREATE INDEX alarm_todo_index ON alarms(todo);
还要注意,sqlite在名为sqlite_master的魔术表中保存数据库本身的模式和表的所有信息,并且还可以对该表执行正常的SQL查询。例如,上面的文档链接显示了如何使用普通的sql命令(参见:查询数据库模式)来导出.schema和.tables命令的行为。