Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

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

Tough Query Help

Status
Not open for further replies.

JMay0816

Programmer
Mar 1, 2007
34
0
0
US
Need some help retrieving a additional field for a query.

Here's my sample data:

DB1:
PartNo: PDescription: Status: Master:
100 widget assembly #1 Active
101 widget assembly #2 Active
102 widget assmebly #3 Active
103 drive line Active 101
104 drive line Active 102


Output should look like the following:
PartNo Description Status MasterDesc
100 widget assembly #1 Active widget assembly #1
101 widget assembly #2 Active widget assembly #2
102 widget assmebly #3 Active widget assembly #3
103 drive line Active widget assembly #1
104 drive line Active widget assembly #2



I can generate the list with the exception of the MasterDescription field for the output. I can't quite create the query to link that info.

Can someone lend a hand?

Thx
 
Code:
select p.PartNo
     , p.PDescription as Description
     , p.Status
     , coalesce(p.Master,m.PDescription) as Master
  from DB1 as p
left outer
  join DB1 as m
    on m.PartNo = p.Master

r937.com | rudy.ca
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top