Scenario : 2
Create the Following Tables with suitable Primary keys , Foregin keys and identify the order of tables ? Dept Table : id, name Course Table : id, name, dept, other_info Teacher Table : id, fname, lname, phone Section Table : id, course, teacher_id, capacity Student Table : id, fname, lname, dob, phone Student_section Table : id, studid, sectionid Dept Table: id (Primary Key) name Teacher Table: id (Primary Key) fname lname phone Course Table: id (Primary Key) name dept (Foreign Key referencing Dept Table) other_info Section Table: id (Primary Key) course (Foreign Key referencing Course Table) teacher_id (Foreign Key refere...