sql中两个日期之间的持续时间

时间:2013-11-06 12:18:14

标签: sql

如何在sql中获得两个日期之间的持续时间

以下是我尝试使用sql的代码:

select A.Product_name,
   B.DeliveredDate,
   DATEDIFF (m,'01/12/2012',B.DeliveredDate)as 'date' 
From Support_RMA A INNER JOIN UnInvoicedProducts B 
   ON  A.Product_name = B.ProductName 
Where A.Customer_name='Mr. Kamalesh Gupta'

我在这里得到日期= 12,但我需要dd/MM/yyyy格式的日期。

1 个答案:

答案 0 :(得分:-2)

选择DATEDIFF(mm,getdate(),getdate())