how do i store prize bond numbers in mysql database -


i creating site in want add functionality checking prize bond numbers confused how store prize bond numbers in database way doing flows

i created table named prizebond these fields

id, prizebond_price, prizebond_date, prizebond_numbers 

now should insert prizebond numbers in prizebond_numbers row , mean there 200+ prize bond numbers right insert them in single row or there other way can

you need normalize data like:

  • table1 id, prizebond_price, prizebond_date
  • table2 prizebond_id,prizebond_number (prizebond_id points id field in table1)

Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -