To display the names of teachers whose names start with 'A,' you can use the following SQL query:
```sql
SELECT Name
FROM Teachers
WHERE Name LIKE 'A%';
```
In this query:
- `Teachers` should be replaced with the actual name of your teacher table.
- `Name` should be replaced with the actual name of the column that stores the teacher names.
The `LIKE` operator is used to search for names that start with 'A' followed by any characters ('%'). This query will return the names of all teachers whose names begin with 'A.'
#sql