Jump to content

Problem with query using LIKE


garry27

Recommended Posts

I'm trying to get a result set for all records with date set to the current month by using a LIKE clause. Unfortunately, it returns a 0 result set. Without the LIKE clause the code works as expected.

 

"SELECT GA_Gig.gigID, GA_Gig.date, GA_User.stageName, GA_Venue.venue,
GA_Town.town, GA_Gig.startTime, GA_Gig.endTime, GA_Gig.musicType, GA_Gig.entryFee,
GA_Gig.gigNote FROM GA_Gig, GA_Town, GA_Venue, GA_User WHERE GA_Gig.date LIKE
'2008-10-%' AND GA_Gig.townID = GA_Town.townID AND GA_Gig.venueID = GA_Venue.venueID
AND GA_Gig.userEmail = GA_User.userEmail AND GA_Town.region = 'North East' ORDER BY date "

 

Any advice please?

Link to comment
https://forums.phpfreaks.com/topic/130912-problem-with-query-using-like/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.