Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

JOIN / Not existing records as blank cells in the results

Status
Not open for further replies.

Mikka07

Computer
Jun 22, 2007
2
hi

I have data in two tables.

NAMES
ID Name
1 FIRST
2 SECOND
...

CODES
ID CodeType Code
1 A xyz
1 B abc
1 C gfd
2 A xdz
2 B dca
3 A xvz
...

I want to join the two tables to get the records from NAMES with the Code of CodeType "C". if there is no record with the codetype c for a given ID a blank cell should appear, so that I can identify for which ID's the CodeType C is mising.
(as below for ID 2)

Result Example
ID Name Code
1 FIRST gfd
2 SECOND ----
...

Does anybody have any idea what should the sql code look like?
Please help!
 
Replies continue below

Recommended for you

select TABLE1.ID,NAME,TABLE2.CODE from table1 LEFT JOIN table2 on TABLE1.ID=TABLE2.id and CODTYPE='C'
 
Correction:

select NAMES.ID, NAME.NAMES, CODES.CODE from NAMES LEFT JOIN CODES on NAMES.ID=CODES.ID and CODTYPE='C'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor