Q:

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

belongs to collection: DBMS - SQL MCQ

0

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


  1. SELECT name, course_name FROM student WHERE age>50 and <80;
  2. SELECT name, course_name FROM student WHERE age>50 and age <80;
  3. SELECT name, course_name FROM student WHERE age>50 and WHERE age<80;
  4. None of these

All Answers

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

 (b).SELECT name, course_name FROM student WHERE age>50 and age <80;

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
How to select all data from student table starting... >>
<< The result of a SQL SELECT statement is a ________...