查询结果放到临时表中, 在临时表中查询. 

select count(*) as c, gameserverid into #tmp from gms_data  

group by [filename], gameserverid having count(*) > 1
select * from #tmp

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-25
  • 2021-05-23
  • 2022-12-23
  • 2021-12-14
  • 2021-07-23
猜你喜欢
  • 2021-05-21
  • 2021-09-25
  • 2022-12-23
  • 2022-12-23
  • 2021-06-08
  • 2021-06-26
相关资源
相似解决方案