use-the-index-luke

2.1 The Equals Operator

kim-jiyoung 2023. 6. 15. 20:37

use-the-index-luke 저자 Markus Winand

---------------------------------------------

Markus Winand는 SQL에 대한 통찰력을 제공하고 다양한 시스템이 SQL을 지원하는 방법을 modern-sql.com 에서 보여줍니다. 이전에 그는 use-the-index-luke.com 을 만들었는데, 지금도 활발하게 유지되고 있습니다. Markus는 winand.at 를 통해 강사, 연사 및 컨설턴트로 고용될 수 있습니다.

---------------------------------------------

You can upload a Korean translation of use-the-index-luke.com on your blog
Thank you from the bottom of my heart to author Makus Winand for allowing me.

These are translations that I use for studying by using a papago (google translate)
The translations may not be correct or there may be a typo.
I'd appreciate it if you could point it out in the comments.

---------------------------------------------

---------------------------------------------

use-the-index-luke.com 의 한글번역본을 블로그에 업로드 해도 된다고

허락해주신 Makus Winand 님께 진심으로 감사합니다.

 

이 번역본들은 제가 공부용도로 번역기(papago, google transrate)를 돌려서 

번역한 내용들이라 맞지 않거나, 오타가 있을수 있습니다.

댓글로 지적해주시면 감사하겠습니다.

---------------------------------------------

 

 

https://use-the-index-luke.com/sql/where-clause/the-equals-operator

 

The Equals Operator for SQL WHERE clause performance

Multi-column indexes are essential for SQL performance. To get optimal performance you must put the index columns into the right order.

use-the-index-luke.com

"=" 연산자

 

equality 연산자는 가장 단순하면서도 자주 사용되는 SQL 연산자입니다.

퍼포먼스에 영향을 주는 인덱스 실수는 여전히 매우 자주 발생합니다.

where 여러 조건을 조합하는 절은 특히 취약합니다.

 

섹션에서는 인덱스 사용을 확인하는 방법과 연결된 인덱스가 결합된 조건을 최적화하는 방법에 대해 설명합니다. 이해를 돕기 위해 느린 쿼리를 분석하여 1장에서 설명한 원인의 실제 영향을 확인합니다.