MySQL - Update table rows without locking the rows
问题 I have requirement where we need to update the row without holding the lock for the while updating. Here is the details of the requirements, we will be running a batch processing on a table every 5 mins update blogs set is_visible=1 where some conditions this query as to run on millions of records so we don't want to block all the rows for write during updates. I totally understand the implications of not having write locks which is fine for us because is_visible column will be updated only