MySQL EXPLAIN UPDATE

前端 未结 2 2162
悲哀的现实
悲哀的现实 2021-02-18 16:56

I am trying to answer the following question as part of my college revision:

Create an index on at least one attribute of a table in the ‘employees’ dat

相关标签:
2条回答
  • 2021-02-18 17:32

    The reference doc of Mysql 5.6:http://dev.mysql.com/doc/refman/5.6/en/explain.html

    As of MySQL 5.6.3, permitted explainable statements for EXPLAIN are SELECT, DELETE, INSERT, REPLACE, and UPDATE. Before MySQL 5.6.3, SELECT is the only explainable statement.

    0 讨论(0)
  • 2021-02-18 17:38

    EXPLAIN UPDATE exists in MySQL 5.6 but not MySQL 5.5 by comparing the document of MySQL. Did you try that on MySQL 5.6 server?

    0 讨论(0)
提交回复
热议问题