Consider the following relation student(rollno, name, branch, year, marks, passport )

Which of the following query find all the student whose name starts with starts with A?

1
select * from student where name like '%A'%;
2
select * from student where name like 'A%';
3
select * from student where name like '%A';
4
select * from student where name like 'A_  _  %';

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation