Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Using SQL Live, create two tables: Emp(Empno, Ename, DNO, BirthDate, Sal) Dept(Deptno, Dname, Mgr) Select by yourself the appropriate data type for each column. For
Using SQL Live, create two tables: Emp(Empno, Ename, DNO, BirthDate, Sal) Dept(Deptno, Dname, Mgr) Select by yourself the appropriate data type for each column. For Emp Table add the following constraints: Empno is the PK, Ename not null, DNO is FK references Dept(Deptno), Sal should be between 1000 and 10000 For Dept Table add the following Constraint: Deptno is PK, Dname is unique, Mgr is FK reference Emp(Empno). Submit your code as one file
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