Respuesta :
Answer:
Kindly note that, you're to replace "at" with shift 2 as the brainly text editor can't accept the symbol
Explanation:
TABLE SCHEMA
create table STUDENT(StudentID int,
Answer:
Select First_name, Last_name, Major, GPA from Student order by Major, GPA;
Explanation:
Select First_name, Last_name, Major, GPA from Student order by Major, GPA;
The above querry will produce or display names and GPA of all students sorted by major, and then ordered by GPA.