T
Terry Olsen
I'm using the OLEDB provider against an Access Database. I need to update
just one record. Is there any way to do something like this?
UPDATE TOP 1 [Articles] SET [Status]='MyClientID' WHERE [Status]=''
I only want to update one record, because i'm going to select that record in
the next statement by using:
SELECT * FROM [Articles] WHERE [Status]='MyClientID'
Any suggestions or guidance?
Thanks.
just one record. Is there any way to do something like this?
UPDATE TOP 1 [Articles] SET [Status]='MyClientID' WHERE [Status]=''
I only want to update one record, because i'm going to select that record in
the next statement by using:
SELECT * FROM [Articles] WHERE [Status]='MyClientID'
Any suggestions or guidance?
Thanks.