Ok... My problem might be simple but I have no idea how to go about doing it!
I have a table with two columns... One is for Vendor ID's and the other is for Machine Numbers... I need an SQL string that will allow me to search for multiple Machine Numbers that match a single Vendor ID... I can't use "Where machineNum = 'example' And machineNum = 'example2';" Because the numbers are on different rows!!! (I hope that makes sence...) Here is a visual example....
VendorID
1
1
1
2
3
MachineNum
2
3
5
3
5
I need to be able to search for all vendorID's that have MachineNumbers 2, 3, and 5.... So in this example I would get an output of VendorID = 1...
😕
Thanks
Travis