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.
$ ./sqlite3 test.db '.dump mytable' > test.sql しかし、このコマンドは「mytable」のすべてのデータを選択します。
ダンプする前に必要なテーブル内のデータを選択できますか?また、その方法は? $ ./sqlite3 test.db '.dump select name from mytable' > test.sql 明らかに、このコマンドは機能しません:'(
sqlite コンソール内でこれを行う唯一の方法は、一時テーブルを作成することです。
CREATE TABLE tmp AS SELECT (field1, field2 ... ) FROM yourTable WHERE ... ; .dump tmp DROP TABLE tmp