如何将两个 sqlite 语句组合成一个?我只想要一个语句得到结果。
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' ;