1.

A subquery in an SQL SELECT statement

Answer»

Assuming table name student and table columns ROLL no, class and marks

SQL statement with subquery:-

SELECT * FROM STUDENT
WHERE MARKS BETWEEN 60 AND 85;


Here subquery is between , you might have studied about this QUERY in your book.

hope it HELPS you



Discussion

No Comment Found