Hi Shravan,
For your query it seems that you want to add related data in database. For that you have to use Normalization.
See the below table structure.
1. tblPName
Columns: 1. Number (Autogenerated), 2. pname
2. tblSerial
Columns: 1. serial, 2. pnamenumber.
Here in the above structure. all your serial items are related to tblPName via the columns pnamenumber in tblSerial and Number in tblPName.
If you want to use single table then you have to save no. and pname for all the serial records which are related to the pname. And this is not the good database design.