พื้นฐานดัชนี B-Tree
สำรวจประเภทดัชนีที่พบบ่อยที่สุดอย่าง B-tree โครงสร้างของดัชนี และวิธีที่ดัชนีช่วยให้ค้นหาข้อมูลใน PostgreSQL ได้อย่างรวดเร็ว
พื้นฐานดัชนี B-Tree เป็นบทเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Advanced PostgreSQL: Indexing, Partitioning, Replication มีบทเรียนทั้งหมด 4 บทเรียน
บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ
B-Tree Index Basics
Meet the B-tree index — PostgreSQL's default and most common type, and the workhorse behind fast, efficient data retrieval.
Speeding Up Data Access
A B-tree index acts like a book's index: instead of a full table scan, it points straight to the rows you want, saving huge amounts of time.
What the 'B' Means
The B in B-tree means Balanced: all leaf nodes sit at the same depth, so any lookup takes about the same time — consistent, predictable speed.
B-Tree Structure: Nodes
A B-tree is an upside-down tree: a root node where searches begin, internal nodes that guide the way, and leaf nodes pointing to real rows.
How a B-Tree Search Works
A B-tree search starts at the root, compares your value to keys to pick the next child, and walks down to a leaf that points at the row.
B-Tree vs. Full Scan (Concept)
A full scan reads every row top to bottom. A B-tree index scan reads a few index pages, then jumps straight to the matching rows. Far faster.
When PostgreSQL Uses B-Trees
PostgreSQL reaches for B-trees on equality checks, range scans, ORDER BY sorting, and joins — which is why they're the default index type.
Creating Your First B-Tree Index
Create one with CREATE INDEX — PostgreSQL builds a B-tree by default. The code indexes the email column of a users table.
CREATE TABLE users (
id SERIAL PRIMARY KEY,
name VARCHAR(100),
email VARCHAR(100) UNIQUE
);
CREATE INDEX idx_users_email ON users (email);Confirming Index Use with EXPLAIN
Run EXPLAIN to see the query plan. Spot Index Scan in the output and you know your index is actually being used.
CREATE TABLE products (
id SERIAL PRIMARY KEY,
name VARCHAR(100),
price DECIMAL(10, 2)
);
CREATE INDEX idx_products_price ON products (price);
EXPLAIN SELECT * FROM products WHERE price > 50;Quick Check: B-Tree Purpose
What is the primary benefit of using a B-tree index in PostgreSQL?
B-Tree Basics Recap
That's the B-tree: a balanced tree of root, internal, and leaf nodes powering equality, range, sort, and join queries. Create with CREATE INDEX, verify with EXPLAIN.
คำถามที่พบบ่อย
บทเรียน “พื้นฐานดัชนี B-Tree” ฟรีหรือไม่
ใช่ — ข้อความเต็มของ “พื้นฐานดัชนี B-Tree” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Advanced PostgreSQL: Indexing, Partitioning, Replication ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Advanced PostgreSQL: Indexing, Partitioning, Replication มีบทเรียนทั้งหมด 4 บทเรียน
คุณจะเรียนรู้อะไรในบทเรียน “พื้นฐานดัชนี B-Tree”
สำรวจประเภทดัชนีที่พบบ่อยที่สุดอย่าง B-tree โครงสร้างของดัชนี และวิธีที่ดัชนีช่วยให้ค้นหาข้อมูลใน PostgreSQL ได้อย่างรวดเร็ว คุณปฏิบัติ Advanced PostgreSQL: Indexing, Partitioning, Replication ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน
คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication หรือไม่
ไม่จำเป็นต้องมีประสบการณ์มาก่อน Advanced PostgreSQL: Indexing, Partitioning, Replication บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน
บทเรียน “พื้นฐานดัชนี B-Tree” ใช้เวลานานแค่ไหน
บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย
ฉันเขียนและรันโค้ดในบทเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication นี้ได้ไหม
ได้ บทเรียน Advanced PostgreSQL: Indexing, Partitioning, Replication ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ
บทเรียนทั้งหมดในหลักสูตรนี้
- เหตุใดดัชนีจึงสำคัญ
- พื้นฐานดัชนี B-Tree
- การสร้างและลบดัชนี
- ดัชนีคีย์เอกลักษณ์และคีย์หลัก