InterviewSolution
Saved Bookmarks
| 1. |
In a database School, there are two tables Employee and Dept as shown below. Table : EmployeeEmpIDNameBalDeptno.T001Vishakha3400010T001Mridul3200050T001Manish4s00020 Table : DeptDeptno.DNameLocationlD10LightsHHO220DanceFF0230ProductionABOl(i) Identify the foreign key in the table Employee.(ii) What output, will you get, when an equi-join query is executed to get the NAME from Employee Table and corresponding DNAME from Dept table? |
|
Answer» (i) Deptno. (ii) Vishakha Lights. |
|