May 10, 2005 #1 Laeg Programmer Nov 29, 2004 95 IE tblA col1| col2| col3 1 A B want to take the values associated with value 1 and insert a new record with my own hardcoded value for col1. So will end up with col1| col2| col3 1 A B 12 A B 27 A B Do I need a cursor or what is the easiest way to do this?
tblA col1| col2| col3 1 A B want to take the values associated with value 1 and insert a new record with my own hardcoded value for col1. So will end up with col1| col2| col3 1 A B 12 A B 27 A B Do I need a cursor or what is the easiest way to do this?
May 10, 2005 1 #2 swampBoogie Programmer Jan 6, 2003 1,660 SE Code: insert into t select 12,col2,col3 from t where col1 = 1 Upvote 0 Downvote