I have an sql data dump, that I want to import into a table. The table is exactly the same, except that I added a timestamp column. I want to be able to capture when I import these records (really just the day). I'm using MySQL and the data dump is in the format of...
INSERT INTO `table` VALUES (value, value, value, value, value, value);
But obviously, this doesn't work since MySQL is expecting the last column, since there is no "columns" clause. Any ideas, other than adding either the column names or last value column to the data file?
Thanks in advance!
jbubrisk
INSERT INTO `table` VALUES (value, value, value, value, value, value);
But obviously, this doesn't work since MySQL is expecting the last column, since there is no "columns" clause. Any ideas, other than adding either the column names or last value column to the data file?
Thanks in advance!
jbubrisk