yeriimii
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Real MySQL 8.0 1권 스터디 - 대상: 8장 8.5~ 인덱스 - 일시: 2024년 9월 29일 일요일 오후 8시 # 참여자 - 알렉스 - 옐리 --- # 이해했는지 확인하기 - 한 줄로 설명하지 못하면 이해하지 못한 것으로 생각합시다. - 이해했다고 착각한 것들 잡아봅시다. - 이해하지 못한 부분은 스터디 종료 후 반드시 학습합시다. ## 8.5 전문 검색 인덱스 ### 어근 분석을 위해 수행해야 하는 두 가지 작업 - 알렉스:불용어, 형태소 분석(어근 분석) - 옐리: 불용어 처리를 하고 어근 분석을합니다. 불용어는 검색할 때 가치가 없는 단어를 필터링하는 것, 어근 분석은 단어의 어근을 분석해서 원형을 찾아가는 방법 ### 어근 분석 외의 다른 알고리즘 이름은? - (hint) n - 옐리 :n-gram 알고리즘, 2-gram 두글자를 인덱스로 만드는 것 - 알렉스: n-gram 알고리즘, 단어들을 N개 만큼의 음절로 쪼개서 인덱스를 만듦. 2-gram => 2개의 글자로 쪼개서 인덱스로 만듦 ### 전문 검색 인덱스를 사용하기 위한 조건 2가지 - 알렉스: - 1. WHERE 조건절에서 전문 검색 인덱스를 위한 쿼리를 사용 - 2. - 옐리: - 1. Match -against를 사용해야 한다. - 2. 검색할 컬럼에 전문 인덱스가 있어야 한다. --- ## 8.6 함수 기반 인덱스 ### 함수 기반 인덱스를 사용하는 이유 - 옐리 : 변형해서 만들어진 값은 기존 인덱스에 포함되지 않기 때문 - 알렉스 : 기존 컬럼에 기반한 새로운 컬럼을 만들거나 할 때 기존 테이블에 새로운 인덱스가 필요. 함수를 이용한 인덱스는 실제 테이블 구조를 변경하지 않고 인덱스를 사용할 수 있기 때문 ### 다음 중 '가상 컬럼 인덱스'와 '함수를 이용한 인덱스'를 구분하세요 #### 1번: ??? ```sql CREATE TABLE user ( user_id BIGINT, first_name VARCHAR(10), last_name VARCHAR(10), PRIMARY KEY (user_id), INDEX ix_fullname((CONCAT(first_name, ' ', last_name))) ); ``` #### 2번: ??? ```sql CREATE TABLE user ( user_id BIGINT, first_name VARCHAR(10), last_name VARCHAR(10), PRIMARY KEY (user_id) ); ALTER TABLE user ADD full_name VARCHAR(30) AS (CONCAT(first_name, ' ', last_name)) VIRTUAL, ADD INDEX ix_fullname (full_name); ``` ### 가상 컬럼 인덱스는 테이블의 구조를 변경하지 않는다. - O vs X ### 함수를 이용한 인덱스는 테이블의 구조를 변경하지 않는다. - O vs X ### 가상 컬럼 인덱스보다 함수를 이용한 인덱스가 성능이 더 빠르다 - O vs X - 알렉스: O - 옐리: O --- ## 8.7 멀티 밸류 인덱스 멀티 밸류 인덱스를 사용하려면 반드시 3가지 함수들을 이용해서 검색해야 합니다. `member of`, `json_contains`, `json_overlabs` 세 함수의 차이에 대해서 알아보겠습니다. ### MEMBER OF 함수 - 특정 값이 JSON 배열에 포함되어 있는지를 확인합니다. ```sql SELECT 3 MEMBER OF('[1, 2, 3, 4]'); -- 1 (참) 반환 SELECT 'a' MEMBER OF('["b", "c", "d"]'); -- 0 (거짓) 반환 ``` ### JSON_CONTAINS 함수 - 하나의 JSON 문서가 다른 JSON 문서에 포함되어 있는지 확인합니다. 즉, 특정 값 또는 구조가 첫 번째 JSON 문서에 존재하는지를 검사합니다. ```sql -- 첫 번째 JSON 문서에 {"a": 1}이 포함되어 있는지 확인 SELECT JSON_CONTAINS('{"a": 1, "b": 2}', '{"a": 1}'); -- 결과: 1 (참) -- 첫 번째 배열에 숫자 3이 포함되어 있는지 확인 SELECT JSON_CONTAINS('[1, 2, 3, 4]', '3'); -- 결과: 1 (참) ``` ### JSON_OVERLABS 함수 - 두 JSON 값(배열 또는 객체) 간에 공통된 값이 있는지 확인할 때 사용합니다. ```sql -- 두 JSON 객체에 공통된 키 "b"가 있으므로 결과는 참 SELECT JSON_OVERLAPS('{"a": 1, "b": 2}', '{"b": 3}'); -- 결과: 1 (참) -- 두 배열에 숫자 3이 공통되므로 결과는 참 SELECT JSON_OVERLAPS('[1, 2, 3]', '[3, 4, 5]'); -- 결과: 1 (참) ``` ## 8.8 클러스터링 인덱스 ### 하나의 테이블에 여러 개의 클러스터링 인덱스를 가질 수 있다 - O vs X ### PK 값이 변경됐을 때 일어나는 일은? - PK 값에 해당하는 레코드의 물리적인 저장 위치도 변경 ### PK 를 생성하지 않으면 어떻게 되는지 설명해 보세요. - (hint) 우선 순위 순서대로 말해보세요. - 알렉스: 유니크 인덱스를 활용 => 만약 유니크 인덱스도 없으면 => 내부적으로 auto_increment 형식의 내부 인덱스 컬럼을 생성 - 옐리: 내부 칼럼은 사용자가 접근 못하니 auto_increment형식의 pk를 만드는 것이 권해짐 ### 클러스터링 인덱스의 장점과 단점 1개씩 말해보세요 - 알렉스: - 장점: 읽기 속도가 빠름 - 단점: 내부적으로 재정렬이 발생해서 쓰기 속도가 느려짐. - 옐리: - 장점: 읽기 속도가 빨라진다. - 단점: 쓰기 속도가 그만큼 희생돼서 느려진다. ### 클러스터링 인덱스 키의 크기가 커지면 발생하는 문제를 말해보세요 - 세컨더리 인덱스가 5개 있다고 가정 - 프라이머리 키 크기가 10 바이트에서 50 바이트로 커진 상황을 가정 - 위 두 가정과 함께 100만개의 레코드를 저장한다고 가정 - 알렉스: InnoDB 특성과 관련. 세컨더리 인덱스의 끝 값은 PK. => PK 값이 커질수록 세컨더리 인덱스도 커진다. 공간 낭비가 심해진다. - 옐리: 세컨더리 인덱스가 5개, 프라이머리 키가 5배 증가했기 때문에 처음에는 100만개 * 10바이트 * 5 = 5000만 바이트였음.(50MB) 5배 증가는 250MB가 될 것이다. ## 8.9 유니크 인덱스 ### 유니크하지 않은 세컨더리 인덱스와의 읽기와 쓰기 성능을 비교해 보세요 - 읽기 성능: (옐리)-읽기 성능은 사실상 똑같다. - (알렉스): 2가지 상황을 가정. - 유니크하지 않다고해서 느리지 않다. - 유니하지 않은 세컨더리 인덱스는 저장되는 데이터의 개수가 많아짐. 하지만 이것이 인덱스의 읽기 성능과는 별개다. - 쓰기 성능: (옐리)-유니크한지 값을 체크해서 조금 더 느릴 수 있다. - (알렉스): 중복되있는지 스캔하기 때문에 느리다. ## 8.10 외래키

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully