我希望每个项目都能获得最高的etape。
select nometape, description
from etape
where idetape in(
select max(idetape) from etapexprojet)
where distinct(idprojet));
我的标签看起来像
etape
idetape/nometape/description
1/debut/commencement
2/rédaction/avancement
3/fin/fin
etapexprojet
idetape/idprojet
1/1
2/1
1/2
2/2
3/2
1/3
我在第5行遇到错误,但我不知道如何克服它