The syntax you used is acceptable. As long as you're not comparing to date fields. ie.
[tt]Select * from mytable where EntryDate = '05/02/2002'[/tt]
Would return records entered on May 2, 2002.
But,
[tt]Select * from mytable where EntryDate = GetDate()[/tt]
Would only return records that matched the date and time the query was run. In most cases, that means nothing would be returned.
If you wanted to return all the records for a specific date, try this...
[tt]Select * from mytable where DATEDIFF(Day, EntryDate, GetDate()) = 0[/tt]
HTH,
MapMan
Assume nothing, question everything, be explicit not implicit, and you'll always be covered.