With the following MySQL table:
+-----------------------------+ + id INT UNSIGNED + + name VARCHAR(100) + +----------------------------
may be what you need is with add syntax
LIMIT
so use
SELECT * FROM tbl ORDER BY name ASC LIMIT 1
if you just need one row..