|
1 CREATE VIEW CXS AS
SELECT * FROM XS WHERE professional name = 'Computer'
(There is no relationship between the department and the professional, so you have to write directly-either there is a problem with the title, or you do not write the complete
2. CREATE VIEW CW AS
SELECT course number, course name, AVG (credits) FROM KC GROUP BY course number, course name
3. CREATE VIEW KC_AVG AS
SELECT A. Student ID, A. Name, B. Course Number, B. Course Name, C. Grade
FROM XS A, CW B, XS_KC C
WHERE A. Professional name = 'Communication Engineering' AND A. Gender = 'Female' AND A. Student ID = C. Student ID AND B. Course Number = C. Course Number
ENCRYPTION |
|