LIKE statement

Gav White

Registered User.
Local time
Today, 16:59
Joined
Jul 16, 2003
Messages
12
Hi All

Is it possible to use a LIKE statment in SQL which will search for Partial Dates, I've been trying but it just bugs out.

Any advice?
 
Gav,

You're probably going to have to use the DatePart function to
accomplish this. See the Help files or use the Search
facility here.

Wayne
 
Or use functions like
Day
Month
Year

Or if you do Format(YourDate, "dd-mm-yyyy") it turns your date into a string and you can "Like" all you want ;)

Regards
 

Users who are viewing this thread

Back
Top Bottom