Serena
2010-11-09 05:11:33 UTC
I'm having problem with the simplest sql ever, and i cant point where the mistake is. hoping for extra pairs of eyes to help me out here.
So i have an EventS table with a lot of records, its EventS.nameOfEvent containing the word "Event", so i want to filter out these records and display them out.
my SQL:
SELECT EventS.nameOfEvent
FROM EventS
WHERE EventS.nameOfEvent LIKE '%Event%'
but nothing is returned! gosh please help me out.