Doug Parker wrote:

How would I create a select statement in MySQL that would return a range of
records from the LastName field where the value starts with a designated
letter - for example, returning the range where the first letter of LastName
is between A and E...

Any help would be greatly appreciated.



------------------------------------------------------------
http://www.phreshdesign.com



SELECT * FROM `user` WHERE lastname > 'A' AND lastname < 'E'

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to