sqlite 从不同数据库复制表

前端之家收集整理的这篇文章主要介绍了sqlite 从不同数据库复制表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

先打开目标数据库

> sqlite3 target.db;


连接被复制表的源数据库

> attach database ‘source.db’ as source2;


创建新表

> create table copyTable as select * from source2.targetTable;

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

猜你在找的Sqlite相关文章