PHP and MySQL: Order by most recent date and limit 10

前端 未结 6 1137
余生分开走
余生分开走 2020-12-11 15:13

I am building a notes system on my site and I\'ve got to the stage where users can post notes into the MySQL database using PHP and then PHP prints them out on a page. Howev

6条回答
  •  一向
    一向 (楼主)
    2020-12-11 15:59

    use:

    SELECT * FROM notes WHERE note_author_id='$u_id' ORDER BY date_time DESC LIMIT 10
    

    DESC : descending order ( from newest to oldest ) LIMIT 10: first 10 records found.

提交回复
热议问题