How to select all data from student table starting the name from letter 'r'?
- SELECT * FROM student WHERE name LIKE \'r%\';
- SELECT * FROM student WHERE name LIKE \'%r%\';
- SELECT * FROM student WHERE name LIKE \'%r\';
- SELECT * FROM student WHERE name LIKE \'_r%\';
(a).SELECT * FROM student WHERE name LIKE 'r%';
need an explanation for this answer? contact us directly to get an explanation for this answer