Post Made Community Wiki by Community
show/hide this revision's text 7 deleted 9 characters in body

T-SQL:

SELECT 
  DateColumn,
  DateColumn - CASE DATEPART(dw, DateColumn) 
                WHEN 1 THEN 6
                ELSE DATEPART(dw, DateColumn) - 2
              END MondayOfDateColumn
FROM 
  TheTable

Do you need the time part to be "00:00:00", too?

If so, apply add this expression to the value the calculationreturns (e.g. wrap the calculation in this):

DATEADD(dd, 0, DATEDIFF(dd, 0, @DateValue))
DateColumn)) - CASE DATEPART(dw, /* etc. etc. */
show/hide this revision's text 6 deleted 22 characters in body

T-SQL:

SELECT 
  DateColumn,
  GETDATE() DateColumn - CASE CASE DATEPART(dw, DateColumn) 
                WHEN 1 THEN 6
                ELSE DATEPART(dw, DateColumn) - 2
              END MondayOfDateColumn
FROM 
  TheTable

Do you need the time part to be "00:00:00", too?

If so, apply this to the value the calculation returns (e.g. wrap the calculation in this):

DATEADD(dd, 0, DATEDIFF(dd, 0, @DateValue))
show/hide this revision's text 5 iterative debugging
show/hide this revision's text 4 added 138 characters in body
show/hide this revision's text 3 gnaw
show/hide this revision's text 2 fixed bug
show/hide this revision's text 1