duandong7980 2018-07-05 12:30
浏览 106
已采纳

在MySQL和PHP中按日期排序,并重视今天的日期

I want to make an order by date to get the comments of user, but I want to give the importance to today date

if there's a comment today show it first and make the ordering with date for the rest.

I try to make this but always give me an error in syntax

SELECT *
FROM comment
ORDER BY IF(`DATE_TIME_COMMENT` = CURRENT_DATE())

is there any solution ?

  • 写回答

2条回答 默认 最新

  • dongxun2089 2018-07-05 12:56
    关注

    First sort by a CASE returning "something lower", if date_time_comment is equal to current_date() and "something higher" else. Then, second, sort by date_time_comment.

    SELECT *
           FROM comment
           ORDER BY CASE date_time_comment
                      WHEN current_date()
                        THEN 0
                      ELSE
                        1
                    END,
                    date_time_comment;
    

    (Possibly add DESC after date_time_comment in the ORDER BY clause, if you want to have newest comments first.)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部