sqlite 常用命令

前端之家收集整理的这篇文章主要介绍了sqlite 常用命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.修改表名

alter table old_name rename to new_name

2.添加

alter table table_name add column clo_name type

3.执行sql文件

.read my.sql

4.查看表结构

.schema table_name

5.查看所有的表

.tables

6.格式化输出

.header on .mode column

7.插入数据

insert into tb_1 select * from te_2

原文链接:https://www.f2er.com/sqlite/198832.html

猜你在找的Sqlite相关文章