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.
毎日、テーブルをolddbからnewdbに移動する必要があります。この2つのコマンドを1つだけで実行することは可能でしょうか?.sqlファイルを作成せずに
mysqldump -u user olddb table_name > moving.sql mysql -u user newdb < moving.sql
mysql -u user -p -e 'insert into newdb.table_name select * from olddb.table_name'
UPD
consitionを使用するには:
mysql -u user -p -e 'insert into newdb.table_name select * from olddb.table_name where olddb.table_name.mydate > ...'