Attribute DataType Description StudentID Number ID of the…
Attribute DataType Description StudentID Number ID of the university student LName String Last Name FName String First Name Major String Degree program in which the student is enrolled CuGPA Number Current GPA at the university Class Date Graduated year or Expected Graduation year Consider the above StudentInfo table, which stores student information. The Primary Key of this table is (StudentID). All attributes will have values (in other words, none of the attributes can have NULL). This table has millions of rows, as it stores student information for the last 200 years of an university. Write a SQL query to retrieve total number of students and average CuGPA broken out by major and class. Retrieve only groups that have more than 50 students.
Read Details