热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SQLite实用武器库(3)利用headers命令在命令行中显示列信息

前面提到,对于表的信息,我们可以通过.schema命令来查看,譬如:sqlite>.tablestest_tablesqlite>sqlite>.schema

前面提到,对于表的信息,我们可以通过.schema命令来查看,譬如:

sqlite> .tables
test_table
sqlite> 
sqlite> .schema
CREATE TABLE test_table (id integer primary key, name text, description text);
sqlite> 

再来用select查询表内容:

sqlite> select * from test_table;
0|name0|des0
1|name1|des1
2|name2|des2

但这样仍然不方便对应着列信息来看数据,尤其是实际工程中的数据库表往往有几十个列。
可以使用headers命令来开启列信息显示,默认是off状态:

sqlite> .headers
Usage: .headers on|off
sqlite> 
sqlite> .headers on
sqlite> 
sqlite> select * from test_table;
id|name|description
0|name0|des0
1|name1|des1
2|name2|des2
sqlite> 
sqlite> .headers off
sqlite> 
sqlite> select * from test_table;
0|name0|des0
1|name1|des1
2|name2|des2

推荐阅读
author-avatar
qingheqianyenft
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有