I have two tables Barcode and Product. I want to take a number from the Barcode table and use it to search for a value in the Product table. So where their values are equal. The Primary Key is Barcode number in the barcode table, and there is a foreign key Barcode number in the Product table.
BARCODE TABLE
Barcode Number
110
PRODUCT TABLE
Barcode Number
102
103
110
So I want to take the value 110 from the BARCODE TABLE and search for that same value in the Product Table.
I hope this makes sense. Thanks in advance
BARCODE TABLE
Barcode Number
110
PRODUCT TABLE
Barcode Number
102
103
110
So I want to take the value 110 from the BARCODE TABLE and search for that same value in the Product Table.
I hope this makes sense. Thanks in advance