Q:

How to select all data from student table starting the name from letter \'r\'?

belongs to collection: DBMS - SQL MCQ

0

How to select all data from student table starting the name from letter 'r'?


  1. SELECT * FROM student WHERE name LIKE \'r%\';
  2. SELECT * FROM student WHERE name LIKE \'%r%\';
  3. SELECT * FROM student WHERE name LIKE \'%r\';
  4. SELECT * FROM student WHERE name LIKE \'_r%\';

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

(a).SELECT * FROM student WHERE name LIKE 'r%';

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

DBMS - SQL MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Which of the following SQL query is correct for se... >>
<< Which of the following query is correct for using ...