如何將兩個sqlite數據庫附加到shell腳本和腳本操作以及它們的別名?例如:從sqlite3 shell我可以附加兩個不同的dbs,讓我們說db1和db2,然後使用: insert into db2.table1(column1)從db1.table1中選擇column1; 將db1上的特定表中的一列複製到db2上的特定表中。 但是,如何在shell腳本中執行同樣的操作?SQLite使用shell腳本將數據從一個數據庫複製到另一個數據庫
0
A
回答
3
爲了讓多條線路到另一個程序的輸入,你可以從一個臨時文件重定向,或從here document:
sqlite3 "" <<EndOfSqlite3Commands
ATTACH 'database1.db' AS db1;
ATTACH 'database2.db' AS db2;
INSERT INTO db2.table1(column1) SELECT column1 FROM db1.table1;
EndOfSqlite3Commands
相關問題
- 1. 將sqlite索引從一個數據庫複製到另一個數據庫
- 2. 將一列數據從一個數據庫複製到另一個數據庫
- 3. 將數據從一個數據庫表複製到另一個數據庫表?
- 4. 將數據從一個數據庫複製到另一個數據庫
- 5. 將數據從一個數據庫複製到另一個數據庫
- 6. 將表格數據從一個數據庫複製到另一個數據庫
- 7. 將數據從一個數據庫複製到另一個數據庫
- 8. 將數據從一個數據庫複製到另一個數據庫
- 9. Django:將數據從一個數據庫複製到另一個數據庫
- 10. 訪問將數據從一個數據庫複製到另一個數據庫
- 11. 將數據從一個數據庫複製到另一個數據庫
- 12. 如何使用腳本將VARBINARY腳本從一個數據庫複製到另一個數據庫?
- 13. 使用node-sqlite將數據從一個數據庫複製到另一個數據庫 - 格式化'insert'語句
- 14. 將標量函數從一個數據庫複製到另一個數據庫
- 15. 如何生成腳本/存儲過程將數據從一個數據庫複製到另一個數據庫
- 16. C++從一個數據庫複製sqlite blob到另一個
- 17. 使用數據比較將數據庫複製到另一個數據庫
- 18. SQL數據庫遷移 - 性能問題(將數據從一個數據庫複製到另一個數據庫)
- 19. 將新記錄從一個數據庫複製到另一個數據庫
- 20. 將mysql blob字段從一個數據庫複製到另一個數據庫
- 21. 如何將視圖從一個數據庫複製到另一個數據庫
- 22. Sql將表從一個數據庫複製到另一個數據庫
- 23. 在PostgreSQL中將表從一個數據庫複製到另一個數據庫
- 24. 如何將表從一個數據庫複製到另一個數據庫?
- 25. 將表從一個數據庫複製到另一個數據庫
- 26. 將表從一個數據庫複製到另一個數據庫
- 27. 如何將記錄從一個數據庫複製到另一個數據庫?
- 28. LLBLGen:將表從一個數據庫複製到另一個數據庫
- 29. 將數據庫內容複製到另一個數據庫
- 30. 將SQL Server數據庫複製到另一個數據庫
難道你不知道如何構造SQL命令字符串,或如何給他們'sqlite3'? –
我想我可以,我可以做所有我需要從sqlite3外殼,我也可以執行選擇和插入從外殼腳本,但我還沒有找到如何將數據從一個數據庫表上移動到另一個表上db,全部來自shell腳本。 – Dotty
顯示你有什麼,以及你卡在哪裏。 –