Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Q:Question:Fclt_Id INT PRIMARY KEY, FcltName VARCHAR(255), Bd_num INT, FOREIGN KEY (Bd_num) REFERENCES Building(Bd_num) ); CREATE TABLE Departments ( DeptID INT PRIMARY KEY, DeptName VARCHAR(255), Fclt_id
Q:Question:Fclt_Id INT PRIMARY KEY, FcltName VARCHAR(255), Bd_num INT, FOREIGN KEY (Bd_num) REFERENCES Building(Bd_num) ); CREATE TABLE Departments ( DeptID INT PRIMARY KEY, DeptName VARCHAR(255), Fclt_id INT, FOREIGN KEY (Fclt_id) REFERENCES Faculties(Fclt_Id) ); CREATE TABLE Offered ( DeptID INT, C_Id INT, PRIMARY KEY (DeptID, C_Id), FOREIGN KEY (DeptID) REFERENCES Departments(DeptID), FOREIGN KEY (C_Id) REFERENCES Courses(C_Id) ); CREATE TABLE CoursesA:Answer:See a step by step answer
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started