Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.2k views
in Technique[技术] by (71.8m points)

如何写这个查询?

show columns from quote;

FieldTypeNullKeyDefaultExtra
idint(8) unsignedNOPRINULLauto_increment
codetextYES NULL
datedateYES NULL
opendoubleYES NULL
highdoubleYES NULL
lowdoubleYES NULL
closedoubleYES NULL
volumebigint(20)YES NULL

select code,max(date) as date from quote group by code;

可以找出每个 code 组里面对应的最大date.
我现在想找出每个组中,最大的date,对应的其他条字段记录,我写成下面的方式

create table b SELECT code,max(date) as date from quote group by code ;
select * from quote as a , b where a.code = b.code and a.date = b.date;

效率很低,请问,如何改进?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...