View Single Post
  #18  
Old 01-09-2009, 04:32 AM
AbsoluteMonkey AbsoluteMonkey is offline
Registered User
AbsoluteMonkey's Avatar
Join Date: Oct 2006
Location: Boston, MA
Posts: 68
AbsoluteMonkey is on a distinguished road
Send a message via AIM to AbsoluteMonkey Send a message via MSN to AbsoluteMonkey Send a message via Yahoo to AbsoluteMonkey
Actually, the best way to do it is to use the 'LIKE' comparison to the `name` field.
Something like:
SELECT * WHERE `name` LIKE 'A%'; <-- should return all rows that start with 'A'.
Reply With Quote