with MiPriceTopOne as (
select classid,max(dataTime) dataTime,max(id) as id from MiPrice group by classid
)
select * from MiPrice where id in (select id from MiPriceTopOne)

相关文章:

  • 2021-10-19
  • 2021-08-01
  • 2021-11-22
  • 2022-12-23
  • 2021-09-14
  • 2021-08-28
猜你喜欢
  • 2021-11-18
  • 2022-12-23
  • 2023-03-05
  • 2022-12-23
  • 2021-07-18
  • 2021-11-18
相关资源
相似解决方案