select st.supplier from supplier_table as st join supplier_item_xref as six on st.id = six.supplier_id join item_table as it on six.item_id = it.id where it.item in ('screw', 'stereo');