我刚刚开始学习SQLite。如果能够看到表的详细信息就太好了,比如MySQL的DESCRIBE [table]。PRAGMA table_info [table]不够好,因为它只有基本信息(例如,它没有显示一个列是否是某种类型的字段)。SQLite有办法做到这一点吗?
当前回答
如果你使用图形工具。它在表名旁边显示模式。对于DB Browser For Sqlite,单击打开数据库(右上角),导航并打开您的数据库,您将看到填充在表中的信息如下所示。
右键单击record/table_name,单击copy create statement,你就有了它。
希望它能帮助到一些无法使用命令行的初学者。
其他回答
如果你使用图形工具。它在表名旁边显示模式。对于DB Browser For Sqlite,单击打开数据库(右上角),导航并打开您的数据库,您将看到填充在表中的信息如下所示。
右键单击record/table_name,单击copy create statement,你就有了它。
希望它能帮助到一些无法使用命令行的初学者。
SQLite命令行实用工具有一个.schema TABLENAME命令,它向您显示创建语句。
查看所有表格:
.tables
要查看一个特定的表:
.schema [tablename]
为了防止人们被一些评论误导到其他答案:
如果.schema或sqlite_master的查询没有给出任何输出,则表示表名不存在,例如,这也可能是由;.schema, .tables,…或者只是因为这个表根本不存在。 schema不能正常工作是不太可能的,然后应该在sqlite项目中提交错误报告。
... .模式只能在命令行中使用;上面的命令>可以通过库(Python, c#等)作为查询运行。——Mark Rushakoff 7月25日21:09
'can only be used from a command line' may mislead people. Almost any (likely every?) programming language can call other programs/commands. Therefore the quoted comment is unlucky as calling another program, in this case sqlite, is more likely to be supported than that the language provides a wrapper/library for every program (which not only is prone to incompleteness by the very nature of the masses of programs out there, but also is counter acting single-source principle, complicating maintenance, furthering the chaos of data in the world).
".schema可以比PRAGMA显示更多的表细节,包括表约束。
下面的命令显示所有表的详细信息:
.schema
下面的命令以良好的格式显示了所有表的详细信息:
.schema --indent
下面的命令显示了一个表的详细信息:
.schema <table_name>
下面这些命令以一种格式良好的方式显示一个表的详细信息:
.schema --indent <table_name>
Or:
.schema <table_name> --indent
此外,下面这些命令显示了关于".schema"的详细信息:
.help .schema
Or:
.help schema
然后,它是这样的:
sqlite> .help .schema
.schema ?PATTERN? Show the CREATE statements matching PATTERN
Options:
--indent Try to pretty-print the schema
--nosys Omit objects whose names start with "sqlite_"