To get the Monday date of the current week you can use the snippet below.
SELECT DATEADD(wk, DATEDIFF(wk,0,GETDATE()), 0) AS Monday
To get the Monday date of the current week you can use the snippet below.
SELECT DATEADD(wk, DATEDIFF(wk,0,GETDATE()), 0) AS Monday