Schlaukopf
.ai
Which SQL syntax correctly retrieves all rows from a table named 'students'?
SELECT * FROM students
SELECT * FROM students WHERE id = 1
SELECT id, name FROM students
SELECT students.* FROM students
Computer Science and Technology Exercises are loading ...