Answer:
SELECT * FROM STUDENTS WHERE ID < 50000
Step-by-step explanation:
If we assume the table is called STUDENTS, then we want to select everything (represented by *), where (like an if statement) the ID (assuming the name of the column) is less than 50000.