SQLite

作者: AEGQ | 来源:发表于2017-11-01 23:58 被阅读24次

参考


示例


  • 安装sqlite3
apt-get install  sqlite3
  • 加载数据库
sqlite3 openab.db
  • 查询当前用户数
select user from openab where action="login" group by user;
  • 设置 显示格式
.header on
.mode column
.width 3 19 6 10 40 7 8 19 19
select * from openab ;

相关文章

网友评论

      本文标题:SQLite

      本文链接:https://www.haomeiwen.com/subject/pjowsxtx.html