A table, STUDENTS, is created using this command:
An example value for the marks is:
Which query will return all of the students ' names and history marks?
SELECT NAME, MARKS [0] FROM STUDENTS;
SELECT NAME, MARKS:history FROM STUDENTS;
SELECT NAME, GET (MARKS, ' history ' ) FROM STUDENTS;
SELECT NAME, MARKS: HISTORY FROM STUDENTS;
Submit