Query with dates issue
Can anyone tell me why my query here is will not pull out an item that falls on today's date? It is supposed to show items if the calendardate is greater than or equal to today's date. It's not showing the "equal to".
<cfquery name="getevents" datasource="mydb">
select * from calendar
where calendardate >= #now()#
order by eventname, calendardate
</cfquery>
