- 4
Fill in the blanks to select all values from the ''students'' table in which the field ''university'' equals ''MIT''.
SELECT * FROM WHERE = 'MIT';
4 Answers
+ 2
SELECT * FROM students WHERE university = 'MIT';
0
SELECT * FROM students WHERE university = 'MIT';
0
SELECT * FROM students WHERE university = 'MIT';
0
ANSWER IS *