mysql 去重 +排序 取最新的数据

2022/5/10 19:00:45

本文主要是介绍mysql 去重 +排序 取最新的数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

SELECT  t.*  FROM 

  (SELECT log_search_content, MAX(log_create_date) log_create_date FROM t_full_text_search_log GROUP BY log_search_content) tmp
    LEFT JOIN  t_full_text_search_log t ON t.log_search_content = tmp.log_search_content
    AND t.log_create_date = tmp.log_create_date



这篇关于mysql 去重 +排序 取最新的数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程