如何在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
格式的日期。
答案 0 :(得分:-2)
选择DATEDIFF(mm,getdate(),getdate())