To select a random student from the table, which statement could you use?
SELECT TOP(1) first_name, last_name FROM Student;
SELECT TOP(1) RAND(first_name, last_name) FROM Student;
SELECT TOP(1) first_name, last_name FROM RAND(Student); https://www.petefreitag.com/item/466.cfm
SELECT TOP(1) first_name, last_name FROM RAND(Student);
SELECT TOP(1) first_name, last_name FROM Students ORDER BY NEWID();