SQL query statement for addition and subtraction of mysql date

Source: Internet
Author: User

The job needs to query the data of this month and this month for ranking. Take a closer look at the date format stored in the database, which is, in this way, I thought that the query method of the database by second would not work. I found a date addition and subtraction SQL function datediff (now, oldtime) on the Internet ). After testing, I can use the following steps to show my operation process. [

The job needs to query the data of this month and this month for ranking. Take a closer look at the database tutorial. The date format saved in the database is, in this way, I thought that the query method of the database by second would not work. I found a date addition and subtraction SQL function datediff (now, oldtime) on the Internet ). After testing, I can use the following steps to show my operation process. [

Select * from t whereDatediff (now (), senddate) <31Order by click desc limit // query the ranking of click data in a month

Select * from t whereDatediff (now (), senddate) <7Order by click desc limit // query the data of one week

Select * from t whereDatediff (now (), senddate) <= 1Order by click desc limit // locate the data of the current day

This makes it much easier to operate. The now function can be identified in the mysql tutorial. Let's look at the instance below.

Mysql> select now ();
+ --------------------- +
| Now () |
+ --------------------- +
| 22:20:46 |
+ --------------------- +

Now, is it very convenient to add or subtract the date,

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.