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.
私は次のようなテーブルを持っています:
id batch_id start_ts stop_ts
昨日開始し(start_ts> .. AND start_ts <..を指定することで簡単に実行できます)、このIDのbatch_idと同じbatch_idを持ち、そのIDが昨日終了した別のIDをテーブルに追加したいと思います。
このMySQLクエリを組み立てる良い方法は何でしょうか?
どうですか...
select <field list> from table t1 join table t2 on t1.id = t2.batch_id where start_ts between <date 1> and <date 2>