Re: Displaying data from mysql
what you need is LIKE
select columnname from table where columnname LIKE 'A%';
you use like instead of = to use a match. The % can represent any number of characters. You can also use * which represents a single character.
|