Answers for "how to reference a table with two foreign key in sql site:stackoverflow.com"

SQL
0

how to reference a table with two foreign key in sql site:stackoverflow.com

Alter VIEW Tests AS
SELECT Dept_Name, EMP1.Emp_Name, EMP2.Emp_Name AS Dept_Boss 
FROM Dept
JOIN EMP EMP1 on Dept_Emp = EMP1.Emp_ID 
JOIN EMP EMP2 on Dept_Boss = EMP2.Emp_ID
Posted by: Guest on September-06-2020

Code answers related to "how to reference a table with two foreign key in sql site:stackoverflow.com"

Code answers related to "SQL"

Browse Popular Code Answers by Language