Home / CSE / SQL Basics :: Discussion

Discussion :: SQL Basics

  1. Which of the following query is correct for using comparison operators in SQL?

  2. A.

     SELECT name, course_name FROM student WHERE age>50 and <80;

    B.

     SELECT name, course_name FROM student WHERE age>50 and age <80;

    C.

     SELECT name, course_name FROM student WHERE age>50 and WHERE age<80;

    D.

     None of these

    View Answer

    Workspace

    Answer : Option B

    Explanation :

    Explanation Not Provided


Be The First To Comment