- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
16小时前关门了。
Improve this question
我使用flask将sqlite3用于我的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>
我希望得到一个整洁的表与表的属性名称在顶部的输出。
1条答案
按热度按时间iaqfqrcu1#
您可以从CLI使用特殊的
.mode
命令更改输出模式。例如:输出格式中还有其他选项。有关详细信息,请查看此命令的帮助: