我有一个包含以下数据的表:
=========================================
| name | version | project_id |
=========================================
| foo | 1| 1|
| new foo | 2| 1|
| bar | 1| 2|
=========================================
如何编写返回每个产品的最高版本记录的查询?从上表中,我想要以下结果:
=========================================
| name | version | project_id |
=========================================
| new foo | 2| 1|
| bar | 1| 2|
=========================================