In Oracle:
Edit: Made it a bit more concise
Edit: Leigh Riffel has posted a much better solution than mine.
select
case when 2 = to_char(sysdate-1,'D') then sysdate - 1
when 2 = to_char(sysdate-2,'D') then sysdate - 2
when 2 = to_char(sysdate-3,'D') then sysdate - 3
when 2 = to_char(sysdate-4,'D') then sysdate - 4
when 2 = to_char(sysdate-5,'D') then sysdate - 5
when 2 = to_char(sysdate-6,'D') then sysdate - 6
when 2 = to_char(sysdate-7,'D') then sysdate - 7
end as last_monday
from dual
