duanqiao123

SELECT * from
(SELECT MAX(a.update_date) as q ,a.monitoring_point_id from biz_monitoring_point_record a GROUP BY a.monitoring_point_id ORDER BY a.update_date DESC) as t1
LEFT JOIN biz_monitoring_point_record t2 ON t1.monitoring_point_id=t2.monitoring_point_id AND t1.q=t2.update_date

分类:

技术点:

相关文章:

  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
  • 2022-02-09
  • 2021-10-07
  • 2022-12-23
  • 2022-12-23
  • 2022-01-25
猜你喜欢
  • 2021-10-26
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
相关资源
相似解决方案