I\'m trying to select records that were added to the database between the start of the current month and the current day - I more or less know how to get records from the curren
WHERE YEAR([Date])=YEAR(GETDATE()) AND MONTH([Date])=MONTH(GETDATE()) AND DAY([Date])<=DAY(GETDATE())