0 votes
in Sql by
How to write an SQL query to find students' names start with 'A'?

1 Answer

0 votes
by

We can write the following query to get the student details whose name starts with A:

SELECT * FROM student WHERE stud_name like 'A%';  

Here is the demo example where we have a table named student that contains two names starting with the 'A' character.

...