Home / CSE / SQL Basics :: Discussion

Discussion :: SQL Basics

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

  2. A.

     SELECT * FROM student WHERE name LIKE 'r%';

    B.

     SELECT * FROM student WHERE name LIKE '%r%';

    C.

     SELECT * FROM student WHERE name LIKE '%r';

    D.

     SELECT * FROM student WHERE name LIKE '_r%';

    View Answer

    Workspace

    Answer : Option A

    Explanation :

    Explanation Not Provided


Be The First To Comment