Question: Modify the EMPLOYEE table so that JobClass column can store data up to two characters only. Modify the EMPLOYEE table so that EndDate column is
- Modify the EMPLOYEE table so that JobClass column can store data up to two characters only.
- Modify the EMPLOYEE table so that EndDate column is deleted
- Create a new Table BOOK_PRICING containing 3 columns ISBN, Cost, CatCode by selecting these columns from the existing BOOK table.
- In the Book_Pricing Table, add the primary key constraint on the field ISBN. Make sure to give a name to the constraint.
- In the Book_Pricing Table, add the foreign key constraint on the field CatCode which reference CATEGORY table.
- In the Book_Pricing Table, drop the foreign key constraint that you created in above question.
Step by Step Solution
3.37 Rating (141 Votes )
There are 3 Steps involved in it
1 Modify the EMPLOYEE table to limit the JobClass column to two characters sql ALTER TABLE EMPLOYEE ... View full answer
Get step-by-step solutions from verified subject matter experts
