ive got problem with update.
here is mysql query.log
25474 Query UPDATE db_mail4u.dMailerQueue
SET mailid = '1Rj6eb-0005bG-ED'
where DeliveryId = '131' and Email = 'mail4u@mail4u.com.ua'
LIMIT 1
25491 Query UPDATE db_mail4u.dMailerQueue
SET Status = 'D'
WHERE mailid = '1Rj6eb-0005bG-ED'
LIMIT 1
after this there is OK with mailid update and no update to Status.
there is no error or something like this.
How can i debug this? or fix or what to do?
is
mailida primary key fordb_mail4u.dMailerQueuetable? if it is, why do haveLIMIT 1on your query? but if not, maybe the first record found is only the one being updated.try to count if how many records of
mailid(‘1Rj6eb-0005bG-ED’) are there in the tabledb_mail4u.dMailerQueue