sqlite常用命令
1 sqlite Danger.db //建立/打开Danger.db数据库文件 2 .databases //查看数据库 3 .tables //列出已有的表 4 .exit //退出 5 6 7 select count(*) from sqlite_master where type='table' and name = 'tablename'; //判断指定的表是否存在 8 9 PRAGMA table_info([tablename]) //查询某个表中所有字段名称. PRAGMA大小写均可 10 11 .help //列出所有内置命令 12 .h ON //查询时显示字段名