I am having a table as follows in MYSQL:
proj_id|hoursWorked|Date.
The date field is of type Date; I want to retrieve all the e
Date
Use WEEK
select * from your_table where week(`Date`) = week('2012-12-01')
If you want to get only records from the current week you can do
select * from your_table where week(`Date`) = week(curdate())