Home > database >  Next to the Max and min field scheduling problem?
Next to the Max and min field scheduling problem?

Time:10-02



+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - +
| | id model | dates | | who
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - +
| DB86A82A4D43AE94330F599281FF0A37 | 11111 | 2017-11-11 20:56:35 | A1 |
| F2B8467F36A00F7760BF142A6493EE71 | 11111 | 2017-11-11 20:56:56 A2 | of the |
4 e3cbb3acf5a7fb5580f447b87bb6af0 | | 11111 | 2017-11-11 20:57:17 | A3 |
+ -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - +
3 rows in the set (0.00 SEC)

Mysql> Select the model, the Max (dates), who from unfinished where del!=1 and the model='11111' order by ` Max (dates) ` asc limit 100;
+ -- -- -- -- -- - + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - +
| model (dates) | | Max who |
+ -- -- -- -- -- - + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - +
| | 11111 | 2017-11-11 20:57:17 | A1
+ -- -- -- -- -- - + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- -- -- -- -- - +
1 row in the set (0.00 SEC)

Why print who not A3?
How to make the Max or min, next to the field associated with? Only separate the Max or min, just take this value alone, beside the field is not associated

New advice, thank you very much

CodePudding user response:

The select unfi. * from unfinished unfi inner join (select model, Max (dates) as max_dates from unfinished group by model desc) b ON unfi. Model=b.m odel and unfi. Dates=b.m ax_dates;

Finally settled, and more efficient way?

CodePudding user response:

Refers to a variety of methods in next post

http://blog.csdn.net/acmain_chm/article/details/4126306
[for] take N largest record grouping method of solicitation, and scattered points...
  • Related