数据库
首页 > 数据库> > sqlite3

sqlite3

作者:互联网

sqlite 指令:与mysql操作指令类似

  1. 创建/打开数据库:.open 【table_name】

  2. 查看当前数据库:.database

  3. 查看所有表名称: .table

  4. 创建表: create table 【table_name】(【表字段】);

  5. 删除表: drop table 【table_name】;

  6. 复制A表字段到B表中:

    insert into 【A_table_name】 (【需插入的字段】)

    select * from 【B_table_name】 (需插入的字段)

    where 【符合条件的字段】;//也可以全部复制,不需要该条件

  7. 查看表结构:.schema

  8. 查看当前数据库下所有的表名称: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