How do I search for names starting wih A in MySQL?

database, mysql, sql

Solution

SELECT * FROM table_name WHERE columnname LIKE 'A%'

Problem

I have a question that how can we use SELECT for searching the name which start with 'A' in MySQL table? thanks

Original source