Reputation: 41
How would I list the students who started later than start year of student with id = 8871?
This is what I have so far:
SELECT sid s1
FROM Student
WHERE s1.started <= sid = '8871';
I went to this link for some reference but I'm still having issues: Query comparing dates in SQL
Student Table has: Student (Lastname, Firstname, SID, Started)
any help would be great
Upvotes: 2
Views: 60