-1
如何將兩個sqlite語句組合成一個?我只需要一條語句就可以得到結果。結合兩個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' ;