✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following SQL query, which is intended to find students who have marks higher than the student with ID = 10:
SELECT Name FROM Student WHERE Marks > (SELECT Marks FROM Student WHERE ID = 10);<SQL>
What potential issue could occur with this query?