May be this:-SELECT a.Network_ID, b.Last_Name + ', ' + b.Preferred_FirstName AS full_name, c.Security_Class_Description, d.Security_Type_Description, a.Security_Value,tmp.Budget_Center_Description,tmp.Company_Name, tmp.Enterprise_Description, tmp.Business_Segment_Description, tmp.Team_Description FROM Company_Hierarchy_Security aJOIN V_Entity_Employee_Active b on a.Network_ID= b.Network_IDJOIN Company_Security_Class c on a.Security_Class_Code=c.Security_Class_CodeJOIN Company_Security_Type d on a.Security_Type = d.Security_Typeinner join (select a1.Network_ID,e.Budget_Center_ID + ' - ' + e.Budget_Center_Description As Budget_Center_Description,f.Company_Name, g.Enterprise_Description, h.Business_Segment_Description, i.Team_Description from Company_Hierarchy_Security a1 Inner JOIN Budget_Center e on a1.Security_Value = e.Budget_Center_ID Inner JOIN Company f on a1.Security_Value = f.Company_IDInner JOIN Enterprise g ON a1.Security_Value = Cast(g.Enterprise_Number As Varchar(5))Inner JOIN Business_Segment h on a1.Security_Value = h.Business_Segment_ID Inner JOIN Team i on a1.Security_Value = i.Team_ID)tmpON a.Network_ID=tmp.Network_ID
If this is what you're looking for pleas post your table structures with some sample data.