insert into Table2(Id,Name,Score,Memo)
(
select Id,Name,Score,Memo from Table1 where id not in
(select id from Table1 a where score<(select max(score) from Table1 b where a.name=b.name))
)

题目就不写了  呵呵

相关文章:

  • 2021-11-01
  • 2022-01-04
  • 2021-10-17
  • 2021-07-05
  • 2022-12-23
  • 2021-12-16
  • 2022-02-13
  • 2022-03-01
猜你喜欢
  • 2021-05-28
  • 2021-10-23
  • 2021-10-20
  • 2022-12-23
  • 2022-12-23
  • 2022-03-07
相关资源
相似解决方案