sqlite3 数据库表查看步骤

1          sqlite3 local.db
2         .mode column
3         .headers on
4         .tables
5          select * from tablename;
6          ;(执行完语句必须执行;号才能查看出表中数据)

7         .exit 退出

注意: sqlite 设置前面要加一点,如:.mode column

           执行sql语句最后要有分号. 如:select * from table;

 

 

 

相关文章:

  • 2022-12-23
  • 2021-11-30
  • 2021-06-04
  • 2022-12-23
  • 2021-04-16
  • 2021-09-18
  • 2021-08-19
猜你喜欢
  • 2022-12-23
  • 2021-06-12
  • 2022-12-23
  • 2022-12-23
  • 2021-09-18
  • 2021-12-16
相关资源
相似解决方案