Is it possible to update first row and with WHERE clause.
I Tried:
UPDATE TOP (1) Players SET... WHERE...
and:
UPDATE TOP 1 Players SET... WHERE
But It seems there is no TOP in sqlite.
Can I use some alternative?
Or am I doing anything wrong?
Try
I can’t verify right now, but maybe
LIMITonly works withSELECTstatements. If so do this: