Question: Write a set of SQL statements ( Hint: Use the SQL ALTER TABLE command.) to add a FullFeePaid column to ENROLLMENT and populate the column,
Write a set of SQL statements (Hint: Use the SQL ALTER TABLE command.) to add a FullFeePaid column to ENROLLMENT and populate the column, assuming that the column is NULL. The only possible values for this column are Yes and No (Compare COURSE.Fee to ENROLLMENT.AmountPaid to determine data values.)
Step by Step Solution
3.34 Rating (169 Votes )
There are 3 Steps involved in it
ALTER TABLE ENROLLMENT ADD FullFeePaid Char4 NULL SELECT CustomerNumber COCourseNumber Fee AmountPai... View full answer
Get step-by-step solutions from verified subject matter experts
