Hi
I have a name field in mysql and I want people to be able to search so that they get back just the record names beginning with the letter that they choose. How do I do this? I don't just want to sort alphabetically, I want it to only bring back records beginning with 'A', or 'B'.
I know how to build a query in terms of select * from table where name = whatever.
What I am trying to avoid is having to add a new column to the table and putting A next to all the names that begin with A. B next to all the B's, etc.
Many thanks