May 16, 2002 #1 Jimreaper MIS May 22, 2001 21 US PRIMARY KEY COL1 COL2 1 a 2 a 3 b 4 c 5 b 6 c 7 a 8 a Question: What is the correct syntax to use if I want to copy COL1 to COL2? Thanks I know this is an easy one I'm new to this.
PRIMARY KEY COL1 COL2 1 a 2 a 3 b 4 c 5 b 6 c 7 a 8 a Question: What is the correct syntax to use if I want to copy COL1 to COL2? Thanks I know this is an easy one I'm new to this.
May 16, 2002 #2 jebry Programmer Aug 6, 2001 3,006 US Hi! The SQL you need is: UPDATE YourTable SET YourTable.col2 = [YourTable]![col1]; hth Jeff Bridgham bridgham@purdue.edu Upvote 0 Downvote
Hi! The SQL you need is: UPDATE YourTable SET YourTable.col2 = [YourTable]![col1]; hth Jeff Bridgham bridgham@purdue.edu