-2

如何在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'

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

4

1 回答 1

-2

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

于 2013-11-06T12:21:53.080 回答