MySQL Forums
Forum List  »  Performance

Re: Would this take long than 10-15 seconds to complete?
Posted by: Andy Andy
Date: May 31, 2018 06:35AM

Sure. Please find below entire SQL statement.

mysql> explain UPDATE request_comments c SET c.COMMENT_TEXT ='' where c.COMMENT_TEXT is null;
+----+-------------+-------+-------+---------------+---------+---------+------+------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+-------+-------+---------------+---------+---------+------+------+-------------+
| 1 | SIMPLE | c | index | NULL | PRIMARY | 4 | NULL | 3767 | Using where |
+----+-------------+-------+-------+---------------+---------+---------+------+------+-------------+
1 row in set (0.02 sec)

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Would this take long than 10-15 seconds to complete?
452
May 31, 2018 06:35AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.