We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
지금까지 notice table에 기본적으로 mysql에 의해 생성되는 primary key index말고, 별도의 검색을 위한 인덱스가 있다고 생각하고 있었다....
우리가 지금 사용하는 쿼리를 explain해보면
explain select n.article_id, n.posted_dt, n.url, n.subject, n.category_name, n.important from notice as n where n.category_name = 'BACHELOR' order by n.posted_dt desc limit 10 offset 0;
category_name과 posted_dt를 사용하는 복합인덱스가 있으면 매우 적절할것같다! 하지만 현실은 없었던....
이를 추가하자!!
The text was updated successfully, but these errors were encountered:
zbqmgldjfh
No branches or pull requests
지금까지 notice table에 기본적으로 mysql에 의해 생성되는 primary key index말고, 별도의 검색을 위한 인덱스가 있다고 생각하고 있었다....
우리가 지금 사용하는 쿼리를 explain해보면
category_name과 posted_dt를 사용하는 복합인덱스가 있으면 매우 적절할것같다!
하지만 현실은 없었던....
이를 추가하자!!
The text was updated successfully, but these errors were encountered: