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