C-06-Q066mediumsingle_mcq
To retrieve only the name and class columns from student, the query is —
To retrieve only the name and class columns from student, the query is —
- a
SELECT * FROM student; - b
SELECT name, class FROM student; - c
GET name, class FROM student; - d
SELECT student (name, class);