Hi all,
I am trying to update a field in a table to just have a value of zero. i try using the code:
UPDATE tablename SET tablename.fieldname = 0;
and it seems very straight forward but returs the error 'Single-row update/delete affected more than one row of a linked table. Unique index contains duplicate values.' now the table is linked to an odbc database on a sql server i have no idea how that's affecting that and the table allows for duplicate values. any help is greatly apreciated! thanks in advance!
I am trying to update a field in a table to just have a value of zero. i try using the code:
UPDATE tablename SET tablename.fieldname = 0;
and it seems very straight forward but returs the error 'Single-row update/delete affected more than one row of a linked table. Unique index contains duplicate values.' now the table is linked to an odbc database on a sql server i have no idea how that's affecting that and the table allows for duplicate values. any help is greatly apreciated! thanks in advance!