Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access-change row and columns

Status
Not open for further replies.

Dano1234

Technical User
May 19, 2008
1
US
I have a table which has two fields: store name and customer name. I would like to change this to store name, customer name1, customer name2. To further iterate, the table looks like this now:

Joes store, Susie Smith
Joes store, Mark Jones . . .

I would like to change this to

Joes store, Susie Smith, Mark Jones

Is there an easy way to do this?
 
Dano - If you are using ASP i would count the number of coulumns you have vs the number of records you need to add to your table. If the number exceeds your amount of available columns then you can use the alter table method to add another column like this:

alter table store add column customerX

let me know if this helps - eBalki
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top