How do I use CFLOOP for updating my records on Access DB? I have tried using the code below but it seems it gives me a duplicated value instead of an increment
My code:
<cfloop index="i" from="1" to="3">
<cfquery name="query" datasource="datasource">
update mytable
set
columnB = #i#
where columnA = 'a'
</cfquery>
</cfloop>
Output of records under columnB= all number 3, it should be 1,2,3
My table looks like this....
Column A|ColumnA1|ColumnB
A A
A B
A C
Columns A and A1 is filled with a previous CFLOOP and SQL Insert.
WHERE columnA = 'a', because that matches all of your sample records. So every time you loop, all of the records are set to the same value. You have not told us why theColumnBvalues should be set to1, 2 and 3. Once you explain that, we can suggest the proper code. – Leigh Feb 6 at 20:25