You can use Inner join in SQL to fetch result and then fill dataset.
your Query may be like this
Select table1.name, table1.ReorderQuantity, table2.Quantity, table2.BadQuantity
from table1, table2 where table1.id = table2.id
above Query will returns 4 columns, fill dataset using above result with the help of dataadapter.