sqlite3 表迁移

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

将数据源中的表notes备份成sql

.output notes.sql
.dump notes # .dump 备份全部
.output stdout

目标数据库执行sql

drop table notes;
.read notes.sql

猜你在找的Sqlite相关文章