select a.guigename,a.thisdayguigeprice,a.createdate
from dailystandardguigeprice as a
inner join (select guigename,max(createdate) as mcreatedate from dailystandardguigeprice group by guigename) as b
on a.guigename=b.guigename and a.createdate=b.mcreatedate

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-27
  • 2021-11-07
  • 2021-11-27
  • 2021-11-07
  • 2021-12-12
猜你喜欢
  • 2021-08-14
  • 2021-11-18
  • 2022-12-23
  • 2021-10-07
  • 2022-12-23
  • 2021-06-27
相关资源
相似解决方案