Why is a normal query for MYSQL so slow? Solve.

there are only 42 pieces of data in the table, ordinary SQL statements, no index and so on, and the table structure has not changed by default. Why the query speed is so slow.

select
articleId,
CODE,
articleTitle,
articleImg,
articleKeyword,
articleAbstract,
articleDetail,
creationtime,
updatetime,
articleAuthor,
accessNum,
STATUS,
articleDate,
isDeleted,
thumbsNum,
parent
from
article

it took more than 30 seconds to check. I want to know why this happened. No, no, no. I don"t know much about the database.

Jan.15,2022

code staus is the keyword of mysq (code is sure, status is not). Add ``(the key below esc) to the query, and the query statements are automatically marked blue. It is recommended not to use this as the field name
clipboard.png
clipboard.png


.

several possibilities that can be thought of:

  1. select happens to have a lock. Lock waiting. Check the slow log to see whether it is a lock waiting
  2. .
  3. the machine configuration is too poor, especially the IO performance of the hard disk. Type out the machine configuration to see
  4. there is a problem with the permissions table. Permissions will be checked when the table is opened
  5. there is a problem with the database installation
Menu