执行sqlite3时属性名不可见[已关闭]

jckbn6z7  于 2023-01-05  发布在  SQLite
关注(0)|答案(1)|浏览(171)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
16小时前关门了。
Improve this question
我使用flasksqlite3用于我的Web应用程序的数据库。运行查询时,我得到了结果,但顶部没有属性名称。

CREATE TABLE registrants (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, name TEXT NOT NULL, username TEXT NOT NULL, pass_hash TEXT NOT NULL, points INTEGER NOT NULL DEFAULT 50);
CREATE TABLE sqlite_sequence(name,seq);
sqlite> select * from registrants;
1|Vasanthan|srvasanthan33|pbkdf2:sha256:260000$lt38hpgeNvQYtJ9g$f8d68b0fde765e525110cfd1619421b1aa1a1db0beae2fb0382c49b5db03b96c|50
sqlite>

我希望得到一个整洁的表与表的属性名称在顶部的输出。

iaqfqrcu

iaqfqrcu1#

您可以从CLI使用特殊的.mode命令更改输出模式。例如:

sqlite> .mode table

输出格式中还有其他选项。有关详细信息,请查看此命令的帮助:

.help .mode

相关问题