I've exported a table from a SQL Server database into a personal geodatabase. I need to query by a data field and can't quite figure out what I need to do when using a 'like' statement.
The date field in question looks like this:
10/6/2011 7:08:19 PM
There are thousands of records that have 10/6/2011 as the date. So I tried:
[date_field] like #10/6/2011 *# etc, but I'm told the syntax is wrong.
I can use the equals statement like this:
[date_field] = #10/6/2011 7:08:19 PM#
and it's good to go. But of course that's just one record...