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 //查詢時顯示字段名