> .tables将列出表
> .schema [tablename]将显示一个或多个表的CREATE语句
还有许多其他有用的内置点命令 – 参见http://www.sqlite.org/sqlite.html的文档,sqlite3的特殊命令部分。
例:
sqlite> entropy:~/library/Mail>sqlite3 Envelope\ Indexsqlite version 3.6.12Enter ".help" for instructionsEnter sql statements terminated with a ";"sqlite> .tablesaddresses ews_folders subjectsalarms Feeds threadsassociations mailBoxes todo_notesattachments messages todoscalendars propertIEs todos_deleted_logevents recipIEnts todos_server_snapshotsqlite> .schema alarmsCREATE 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命令的行为。
总结以上是内存溢出为你收集整理的sqlite3 – 如何在SQLite中看到表的结构?全部内容,希望文章能够帮你解决sqlite3 – 如何在SQLite中看到表的结构?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)