If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Microsoft SQL Server > Help with Query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-23-11, 11:57
wildgoosed wildgoosed is offline
Registered User
 
Join Date: Aug 2007
Posts: 7
Help with Query

Hi everyone,

I have 3 tables.

Employees(empid)
EmployeesCertificates(empid,certid,expirydate)
Certificates(certid)

What I'm trying to do is return all certificates for all employees, but I also want to return entries where employee's are missing certificates.

So far this is what I have but it only returns certificates that employee's have.

Code:
select EmployeeCertificates.EMPID, EmployeeCertificates.CertId,EmployeeCertificates.ExpiryDate, Certificates.CertID,Certificates.CertName
from EmployeesCertificates
left join Certificates on
EmployeeCertificates.CertId = Certificates.CertID
I imagine I'm missing something with the Employee's table maybe, not sure though. Any advice would be appreciated.

Thanks
Reply With Quote
  #2 (permalink)  
Old 12-23-11, 13:18
Wim Wim is offline
Registered User
 
Join Date: Nov 2004
Posts: 1,280
Try this:
Code:
select Employees.EMPID, 
	EmployeeCertificates.CertId,
	EmployeeCertificates.ExpiryDate, 
	Certificates.CertID,
	Certificates.CertName
from Employees
	LEFT OUTER JOIN EmployeesCertificates ON
		Employees.empid = EmployeesCertificates.empid
	left OUTER join Certificates on
		EmployeeCertificates.CertId = Certificates.CertID
__________________
With kind regards . . . . . SQL Server 2000/2005/2008/2008 R2 Earned beers: 16
Wim
Beware of bugs in the above code; I have only proved it correct, not tried it. -- Donald Knuth
Grabel's Law: 2 is not equal to 3 -- not even for very large values of 2.
Pat Phelan's Law: 2 very definitely CAN equal 3 -- in at least two programming languages
Reply With Quote
  #3 (permalink)  
Old 12-23-11, 18:31
wildgoosed wildgoosed is offline
Registered User
 
Join Date: Aug 2007
Posts: 7
Hi Wim!

Thank you very much. I actually had something very similar this morning, and changed my mind, so I was sort of close.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On