php - How do I select top ranker by date in MySQL -


I have a user data base with rank. I see how do I choose the top ranked person on the basis of today's search? And I need to do it on a daily basis.

It will:

  SELECT id, rank, something from person , Where date = date (now ()) is ranked from the range of DESC 1;  

Comments