
01-09-2009, 04:32 AM
|
|
Registered User
|
 |
Join Date: Oct 2006
Location: Boston, MA
Posts: 68
|
|
|
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'. |
|
|
|