>sqlite3 test.dat
SQLite version 3.13.0 2016-05-18 10:57:30
sqlite> create table test ( a integer,b integer, c integer,d float,e text, f primary key);
sqlite> .schema
CREATE TABLE test ( a integer,b integer, c integer,d float,e text, f primary key);
sqlite> .schema --indent
CREATE TABLE test(
a integer,
b integer,
c integer,
d float,
e text,
f primary key
);
3条答案
按热度按时间1tu0hz3e1#
在最新版本(3.13.0)中,您拥有
8i9zcol22#
我也在寻找解决这个问题的方法。
命令:
给出输出:
ny6fqffe3#
下面的命令以格式良好的方式显示所有表格的详细信息:
下面的这些命令以格式良好的方式显示一个表格的详细信息:
或者:
此外,下面这些命令显示有关". schema"的详细信息:
或者:
那么,下面是这样的:
Buy me a coffee!!