Write SQL queries
For the following relational model:
Student(sid, fname, lname, gpa)
Course ( cid, code, name, credithours)
Enrolled (sid, cid,grade)
Write SQL queries for the following:
- Print all the students by the name order desc by the gpa.
- Print all the computer sciences courses, these courses with code start with ‘CS’
sorted alphabetically. - Print all the students with a gpa less than 3.0
- Print all the students with a gpa of a least 3.0
- Find all students that have enrolled in database course
- Find all students that have enrolled in database and network courses
- Find all the students that have (A or more) at least once