创建/打开数据库:.open 【table_name】
查看当前数据库:.database
查看所有表名称: .table
创建表: create table 【table_name】(【表字段】);
删除表: drop table 【table_name】;
复制A表字段到B表中:
insert into 【A_table_name】 (【需插入的字段】)
select * from 【B_table_name】 (需插入的字段)
where 【符合条件的字段】;//也可以全部复制,不需要该条件
查看表结构:.schema
查看当前数据库下所有的表名称:sqlite> SELECT tbl_name FROM sqlite_master WHERE type = 'table';
//详情参考:https://www.runoob.com/sqlite/sqlite-java.html