Hoping someone can help. I've looked on the internet for a solution but none seem to resolve it.
I want to query a large table and only get the results back where a column equals today's date.
Here's the query:
select [Table1].[Field1]
from [Table1]
where [Table1].[Field1] = GetDate()
The date format is as follows:
20020630
I'm a beginner in SQL so any help would be really appreciated because I am growing fond of it.
Thank you!!! :)