If you are creating an inventory of parts with several fields for each item, then you create a unique id for each item and use this in the main table. You then use this id field to join the main table with the part details as and when you need to include them in your application.
see
http://dev.mysql.com/doc/mysql/en/SELECT.html
http://dev.mysql.com/doc/mysql/en/JOIN.html
parts table
part_id, class, type, make, model, spec
1, mouse, usb, dell, intellimouse,
2, mouse, serial, microsoft, lousymouse,
3, hard disk, ide, seagate, sg854025, 40GB
parts inventory
item_id, part_id, date bought, date used
1, 3, 20/06/2004, 12/07/2004
1, 1, 21/06/2004,
system table
system_id, make, model, serial no, mouse, etc