亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

MySQL DATEDIFF 函數

標簽:
MySQL

Summary: in this tutorial, you will learn how to use the MySQL DATEDIFF function to calculate the number of days between two date values.

MySQL DATEDIFF function syntax

MySQL DATEDIFF function calculate the number of days between two DATE, DATETIME, or TIMESTAMP values. The DATEDIFF function is useful in many cases e.g., you can calculate an interval in days that the products need to ship to a customer.

The syntax of the MySQL DATEDIFF function is as follows:

DATEDIFF(date_expression_1,date_expression_2)

The DATEDIFF function accepts two arguments which are two valid DATEDATETIME or TIMESTAMP values. You can pass expressions that evaluate to DATE,DATETIME or TIMSTAMP values to the DATEDIFF function.

The DATEDIFF function returns the number of days between two DATE values i.e., date_expression_1 - date_expression_2.

Notice that the DATEDIFF function uses only date parts of the expressions for calculation. It ignores the time part if you pass the DATETIME or TIMESTAMP values.

MySQL DATEDIFF function examples

Let’s take a look at some  examples of using the   DATEDIFF function.

SELECT DATEDIFF('2011-08-17','2011-08-17'); -- 0 day SELECT DATEDIFF('2011-08-17','2011-08-08'); -- 9 days SELECT DATEDIFF('2011-08-08','2011-08-17'); -- -9 days

To calculate the number of days between required date and shipped date for orders in the orders table, you use the DATEDIFF function as follows:

SELECT orderNumber,        DATEDIFF(requiredDate,shippedDate) daysLeft FROM orders ORDER BY daysLeft DESC;

MySQL DATEDIFF function query output

The following statement gets all orders whose statuses are in process and calculates the number of days between the ordered date and required date:

SELECT orderNumber,         DATEDIFF(requiredDate,orderDate) remaining_days FROM orders WHERE status = 'In Process' ORDER BY remaining_days;

MySQL DATEDIFF function example

For calculating an interval in week or month, you can divide the returned value of the DATEDIFF function by 7 or 30 as the following query:

SELECT orderNumber,         DATEDIFF(requiredDate,orderDate) /7,         DATEDIFF(requiredDate,orderDate) /30  FROM orders WHERE status = 'In Process'

MySQL DATEDIFF week and month intervals

In this tutorial, you have learned how to use MySQL DATEDIFF function to calculate the number of days between two DATE or DATETIME values.

原文链接:http://outofmemory.cn/mysql/function/mysql-datediff

點擊查看更多內容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優質文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學習,寫下你的評論
感謝您的支持,我會繼續努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學

大額優惠券免費領

立即參與 放棄機會
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號

舉報

0/150
提交
取消