in reply to DBI question
This is more of a SQL question than a DBI question. For inserting rows you can skip the column names if you specifiy values in order and for every column.
Here is the format:
insert into table values (val1, val2, val3, ... valN);
where table has N columns
you must have a value for each column, even if that value is NULL(undef).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: DBI question
by arhuman (Vicar) on May 09, 2001 at 18:57 UTC | |
|
Re: Re: DBI question
by Anonymous Monk on May 09, 2001 at 19:45 UTC | |
by Mungbeans (Pilgrim) on May 10, 2001 at 16:17 UTC |