如何使用DateDiff获取两个日期之间的日期差异排除周末

时间:2017-07-18 10:23:42

标签: c# sql asp.net

我希望使用datediff来区分两个日期,我想排除周末。下面的代码。

SqlDataAdapter sda = new SqlDataAdapter("SELECT [uSerial] " +", DATEDIFF(dd,[RestartDate],getDate()) as statusDuration ,[cutRefs] " "FROM [dbo].[tblFTTH_Fault_Tool]", conn);
DataTable ds = new DataTable();
sda.Fill(ds);
GridView1.DataSource = ds;
GridView1.DataBind();

友好协助。

1 个答案:

答案 0 :(得分:0)

我认为你应该使用

SELECT DATEDIFF(day,'2014-06-05','2014-08-05') AS DiffDate

,结果是

DiffDate 61