sqlite3
作者:互联网
sqlite 指令:与mysql操作指令类似
-
创建/打开数据库:.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
标签:sqlite,name,查看,数据库,表字,sqlite3,table 来源: https://www.cnblogs.com/a-n-yan/p/16107124.html