How can I still select data when the specified record has no entry in the linked table?
Select *
FROM Employees e , Computers c
WHERE e.EmployeeID = c.EmployeeID
With this statement I will get all the employees that have a computer assigned to them. But I also want the employees without a computer in the list.
Example like this :
01 - JOHN - DELL 2400
02 - DARREN - HP PIV
03 - DAVID -
04 - BILL - DELL 2400
Thanks,
Select *
FROM Employees e , Computers c
WHERE e.EmployeeID = c.EmployeeID
With this statement I will get all the employees that have a computer assigned to them. But I also want the employees without a computer in the list.
Example like this :
01 - JOHN - DELL 2400
02 - DARREN - HP PIV
03 - DAVID -
04 - BILL - DELL 2400
Thanks,