i want to do a search where Lastname begins with "A"
but i can't find any example of how to do it anywhere on the web.
I assumed your are talking about SQL, if I'm right try:
SELECT * FROM yourTable WHERE Lastname LIKE 'A%'
thats exactly what i needed thanks alot.