D
DawnTreader
Hello All
i have 2 tables, one has my company part numbers, the other has a
supplier set of part numbers. the company part table has a place for
manufacture part numbers. sometimes the number put in there by an
employee may have a portion of it that matches the actual supplier
part number. i need to know how to find those parts in my company
table that may contain the mfg pn from the other table. here is what i
have so far:
SELECT dbo_PART.ID, dbo_PART.DESCRIPTION, dbo_PART.MFG_PART_ID,
Table3.mfgpn
FROM dbo_PART RIGHT JOIN Table3 ON dbo_PART.MFG_PART_ID =
Table3.mfgpn;
how do i add the ability to do a "like *something*" on the join?
i have 2 tables, one has my company part numbers, the other has a
supplier set of part numbers. the company part table has a place for
manufacture part numbers. sometimes the number put in there by an
employee may have a portion of it that matches the actual supplier
part number. i need to know how to find those parts in my company
table that may contain the mfg pn from the other table. here is what i
have so far:
SELECT dbo_PART.ID, dbo_PART.DESCRIPTION, dbo_PART.MFG_PART_ID,
Table3.mfgpn
FROM dbo_PART RIGHT JOIN Table3 ON dbo_PART.MFG_PART_ID =
Table3.mfgpn;
how do i add the ability to do a "like *something*" on the join?