I want records from table which stores the current date when a record is inserted with in current week only.
I have tried:
SELECT PId ,WorkDate ,Ho
A better way would be
select datepart(ww, getdate()) as CurrentWeek
You can also use wk instead of ww.
Datepart Documentation