I want to update one column in one row, one record... the problem is that when i do my search i got more than one row matching my search, these rows are EXACT the same.
So when i do my update the column in all of these rows will be updated with a new value...
I only want the column updated in ONE row!
Some like this:
------------------------------------------------------------
sSQL = "SELECT * FROM TABLE WHERE COL1 = 'BAH' AND COL2 = 'BLAH'"
objRS.Open sSQL, objConnection ,0,2
objRS("COL1"
= "TEST"
objRS.Update
------------------------------------------------------------
Say i got 4 rows in my search and when i then do my update all COL1 will change to "TEST"... not good...
PLEASE! I go mad!
-Robert-
So when i do my update the column in all of these rows will be updated with a new value...
I only want the column updated in ONE row!
Some like this:
------------------------------------------------------------
sSQL = "SELECT * FROM TABLE WHERE COL1 = 'BAH' AND COL2 = 'BLAH'"
objRS.Open sSQL, objConnection ,0,2
objRS("COL1"
objRS.Update
------------------------------------------------------------
Say i got 4 rows in my search and when i then do my update all COL1 will change to "TEST"... not good...
PLEASE! I go mad!
-Robert-