Please I need to distribute this App Project
I created a project and i want to distribute it to 3 pcs. My sql server database will be in one of the pcs. Please i ve tried as much as i know but cant figure it out, can anyone help me. I really need help.
Answers (4)
0
- SELECT Empid,Empname,Deptname
- FROM Employee
- INNER JOIN Department ON Department.Deptid = Employee.Deptid
This is the best code.
0
- SELECT Empid,
- Empname,
- Deptname
- FROM Employee
- INNER JOIN Department ON Department.Deptid = Employee.Deptid