mvsetup命令为什么用不了

2025-03-09 21:14:29
推荐回答(1个)
回答1:

select id,mc,age
from table1 x
where age in(
select min(age)
from table1 y
where x.mc=y.mc
group by mc
)
差不多就是这个了