2 つのクエリがあります。
Array allIds = select id from table1 order by time
と
select * from table1 where id in (allIds[0],allIds[1],...,allIds[9])
これらのクエリを 1 つに結合する方法はありますか? 両方のクエリからのすべてのデータが必要です。
2 つのクエリがあります。
Array allIds = select id from table1 order by time
と
select * from table1 where id in (allIds[0],allIds[1],...,allIds[9])
これらのクエリを 1 つに結合する方法はありますか? 両方のクエリからのすべてのデータが必要です。