What\'s the easiest way to select a row, modify couple of columns and insert it to the same table? I\'m trying to insert a new row based on another.
INSERT INTO table(column1,column2) SELECT column1, const2 FROM table ...
The select list will likely mix copied columns (by name) and changed columns (by desired values).