SELECT
ct.[BASE]
,ct.[BASEDescription]
,ct.[PART_NO]
,ct.[M]
,ct.[OP]
,ct.[PIECE]
,ct.[QTY]
,ct.[PART_ID]
,ct.[DESCRIPTION]
,tt.LABOR_HOURS
,tt.LABOR_COST
FROM [DATABASE].[dbo].[CarrieTbl] ct inner join DATABASE2.dbo.TT_HOUR_DETAILS tt
ON ct.[PART_NO]=tt.PART_ID
If each PART_NO corresponds to one and only one BASE, how about trying something like this:
Open in new window
You might have to adjust things to get it working, but hopefully the general idea makes sense.