How can we know that a MySQL UPDATE was successful in actually updating a Row?
I mean lets say this is the UPDATE:
UPDATE xyz SET
me = me + 1
WHERE id = 1000
AND date = CURDATE()
LIMIT 1;
How can we know, without doing a SELECT, that this UPDATE actually did UPDATE a row?
Again, without using a SELECT command to check this, but just looking to the MySQL query of above UPDATE.