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.
SQLite クエリの出力をパイプしたい。MySQL の場合、私はそうしますmysql --execute "MYQUERY"。SQLiteで同じことを達成するにはどうすればよいですか?
mysql --execute "MYQUERY"
コマンドのオプションの 2 番目の引数は、sqlite3実行する SQL です。そうsqlite3 path/to/my/db "MYQUERY"です。
sqlite3
sqlite3 path/to/my/db "MYQUERY"