Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
bash ファイルで作成された 2 つのデータベースが1.sqliteあり2.sqliteます。それらを新しいデータベース ( ) に結合したいと考えています3.sqlite。それを行うコマンドはbashにありますか?
1.sqlite
2.sqlite
3.sqlite
編集:
スプートニクが私に与えた答えは、私を正しい軌道に乗せました。しかし、次のように再配置する必要がありました。
sqlite3 1.sqlite .dump > tempdb.sqlite
はい、次のshellコードを試してください。
shell
sqlite3 .dump 1.sqlite > dump sqlite3 .dump 2.sqlite >> dump sqlite3 3.sqlite < dump
ただし、名前が同じ場合は、テーブルの衝突に注意してください。