Comp 353 ========================================================= Assignment 1, Due Feb 12 Create two tables TUTORS (tname, phone) list of tutors and their phones KEY: tname sam 555-1234 sue 555-4321 TUTORING(coursename, tname) list of courses, by name, and the tutor's name KEY: coursename One tutor can tutor for more than one course comp123 sam comp124 sue math321 sue All fields are strings (your choice of CHAR or VARCHAR) Add a FOREIGN KEY constraint, so that tname must exist in TUTORS before added to TUTORING. Submit SQL table declarations AND insert statements. UPDATE STATEMENTS ARE OPTIONAL Also submit insert statements that would FAIL due to: * The Primary Key constraints * the Foreign Key constraint Have one insert statement for each failure. =========================================================