I am having a really hard time writing a SELECT query to get a hold of the data in the following table...
Here is a picture of the table...
http://i44.tinyp
Have you tried:
SELECT pname from [TableName] WHERE quantity >= 10
EDIT:
SELECT pname from Parts INNER JOIN Shipments ON Parts.ForeignKey = Shipments.ForeignKey WHERE quantity >= 10