Name chengji fengshu
张三 数学 75
张三 语文 81
李四 数学 90
李四 语文 76
王五 数学 81
王五 语文 100
王五 英语 90


SQL Server:

select distinct [Name] from [表] where [Name] not in (
select [Name] from [表] where [fengshu]<=80
)

或者

select distinct name from A

minus

select name from A where fenshu<80

相关文章:

  • 2021-07-21
  • 2021-10-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-24
  • 2021-05-17
  • 2022-12-23
  • 2022-01-14
  • 2021-07-24
相关资源
相似解决方案