请找到下面给出的查询:
SELECT DISTINCT
reco_index_content_code,
reco_index_content_name,
reco_index_content_url
FROM tbl_reco_index_contents
WHERE
reco_index_user_action_at_select = 1
AND user_profile_number = 1
我需要选择reco_index_content_name
不同的。
应该如何修改上述查询,以实现这一点,这样就没有重复的reco_index_content_name
行?