Question:medium

Consider the table Student with attributes (rollNum, name, gender, marks). The primary key is rollNum. The SQL query is:
SELECT *
FROM Student
WHERE gender = 'F' AND marks > 65;
The number of rows returned by this query is:

Show Hint

Always check the inequality carefully: marks>65} excludes rows where marks $=65$. Equality requires >=}.
Updated On: Jan 31, 2026
Show Solution

Correct Answer: 2

Solution and Explanation

Was this answer helpful?
0