How can I get the records from a db where created date is today\'s date?
SELECT [Title], [Firstname], [Surname], [Company_name], [Interest] FROM [dbo].[EXTRANET
There might be another way, but this should work:
SELECT [Title], [Firstname], [Surname], [Company_name], [Interest] FROM [dbo].[EXTRANET] WHERE day(Submission_date)=day(now) and month(Submission_date)=month(now) and year(Submission_date)=year(now)