gple Posted August 25, 2007 Share Posted August 25, 2007 I have a bunch of information that I want to insert into a table insert into TABLE values ('hello','I','am','lost'); pretend that the words that are being inserted are coming from a form for another page. In he case I above I have declared that the table has four columns to insert into. What if I do not know how many columns there are? Quote Link to comment Share on other sites More sharing options...
Jessica Posted August 25, 2007 Share Posted August 25, 2007 If you don't know how many columns are in your table, you have not designed your database well. Quote Link to comment Share on other sites More sharing options...
gple Posted August 25, 2007 Author Share Posted August 25, 2007 This is what the situation is: I am building a page that reads how many columns are in a table. Depending on how many columns, a form is created to input data into each of those columns. Then I pass the data to another page which inserts it into the table. But the question is this: I need to create an insert statement dynamically depending on how many columns there are. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.