2 つの sqlite ステートメントを 1 つに結合する方法は?1 つのステートメントだけで結果が得られるようにします。
create table lowprice as select code,date,min(close) as min_close from quote where date between '20120730' and '20121030' group by code;
select * from lowprice where lowprice.date between '20121025' and '20121030' ;