4. Write SQL data definition commands for each of the following queries:
a. How would you add an attribute, Class, to the Student table?
ALTER TABLE Student_T
ADD COLUMN Class;
b. How would you remove the Registration table?
DROP TABLE Registration_T;
c. How would you change the FacultyName field from 25 characters to 40 characters?
ALTER TABLE Faculty_T
ALTER COLUMN FacultyName TYPE VARCHAR2(40);
6. Write SQL queries to answer the following questions: a. Which students have an ID number that is less than