求一SqL语句-->飙马转移
NUM Name Age1 aa 1
1 aa 2
2 bb 1
2 bb 2
2 bb 3
现在我的目的是取得结果
NUM Name Age
1 aa 2
2 bb 3
这个Sql语句应该如何写呢?
花花的方法 用 not exists
花花的方法 用 not exists
select * from table a where not exists (select 1 from table where name=a.name and num=a.num and age>a.age)