Closed
Description
Currently the driver returns the first result if there is more than one.
Would it make more sense to return the last result instead?
CREATE TABLE example (num INT); INSERT INTO example VALUES (1), (23), (42); UPDATE example SET num = num+10 WHERE num < 25
I assume that usually the last statement is the one you care about. Any thoughts?