Hi All!
I am trying to copy multiple rows from a table into the same table. However, one of the field values needs to change in the insert. This is what I have so far.
INSERT INTO MODULE(MODULE_TITLE,MODULE_DESC,MODULE_INSTRUCTOR,MODULE_SCHLYR ) SELECT MODULE_TITLE, MODULE_DESC, MODULE_INSTRUCTOR FROM MODULE WHERE MODULE_SCHLYR='2008'
The column MODULE_SCHLYR field value needs to be 2009. Does anyone know how I can accomplish this?
Thank you in advance.
I am trying to copy multiple rows from a table into the same table. However, one of the field values needs to change in the insert. This is what I have so far.
INSERT INTO MODULE(MODULE_TITLE,MODULE_DESC,MODULE_INSTRUCTOR,MODULE_SCHLYR ) SELECT MODULE_TITLE, MODULE_DESC, MODULE_INSTRUCTOR FROM MODULE WHERE MODULE_SCHLYR='2008'
The column MODULE_SCHLYR field value needs to be 2009. Does anyone know how I can accomplish this?
Thank you in advance.