0Pricing
Data Science Academy · บทเรียน

ผสานด้วยคีย์และดัชนี

เชื่อมตารางด้วยคอลัมน์หรือดัชนี

ผสานด้วยคีย์และดัชนี เป็นบทเรียน Data Science Academy ฟรีบน CoddyKit นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน คุณสามารถอ่านบทเรียนทั้งหมดด้านล่างฟรี — จากนั้นลองปฏิบัติด้วยตัวคุณเองในเบราว์เซอร์พร้อมตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7 บทเรียนนี้เป็นส่วนหนึ่งของเส้นทางการเรียน Data Science Academy และความก้าวหน้าของคุณจะซิงค์ข้ามเว็บและแอป CoddyKit คอร์ส Data Science Academy มีบทเรียนทั้งหมด 4 บทเรียน

บางส่วนของบทเรียนนี้ยังไม่ได้รับการแปล และแสดงเป็นภาษาอังกฤษ

Same Name, One Word

When both tables share a column with the same name, on is all you need to merge them together.

orders.merge(customers, on="customer_id")

Join on Many Keys

Sometimes one column is not enough. Pass a list to on and pandas matches rows on every key at once.

sales.merge(targets, on=["region", "month"])

Different Names, No Problem

When key columns are named differently, use left_on and right_on to tell pandas which column maps to which.

orders.merge(users, left_on="uid", right_on="id")

A Leftover Column

With left_on and right_on, both key columns survive in the result. You often drop the duplicate afterward.

merged.drop(columns="id")

The Index Can Be a Key Too

If your key lives in the index instead of a column, set left_index or right_index to True to join on it.

orders.merge(prices, left_on="sku", right_index=True)

join for Index Merges

For two index-aligned tables, the join method is shorter. It merges on the index by default.

left.join(right)

Handle Overlapping Names

When both tables have a column with the same name, pandas adds suffixes so the two versions stay distinct.

a.merge(b, on="id", suffixes=("_a", "_b"))

Keys Must Share a Type

A common surprise: a key stored as a string on one side and an integer on the other will simply never match.

Mind Duplicate Keys

If a key value repeats on both sides, merge produces every matching pair. Rows can multiply unexpectedly.

join Defaults to Left

Unlike merge, the join method uses a left join by default. Pass how to change it when you need to.

left.join(right, how="outer")

Pick the Right Tool

Use merge for column keys with full control, and join when both tables are already aligned on their index. 🔧

Quick Check

Your key columns have different names in each table. What do you use?

Recap: Matching the Keys

You can merge on shared columns, mismatched names, or the index, and use suffixes to keep overlapping columns clear. Nicely done!

คำถามที่พบบ่อย

บทเรียน “ผสานด้วยคีย์และดัชนี” ฟรีหรือไม่

ใช่ — ข้อความเต็มของ “ผสานด้วยคีย์และดัชนี” ฟรีให้อ่านที่นี่บนเว็บ เพื่อปฏิบัติแบบโต้ตอบ (ตัวแก้ไขโค้ดในตัวและติวเตอร์ AI ตลอด 24/7) และปลดล็อคส่วนที่เหลือของคอร์ส Data Science Academy ให้อัปเกรดเป็น CoddyKit PRO คอร์ส Data Science Academy มีบทเรียนทั้งหมด 4 บทเรียน

คุณจะเรียนรู้อะไรในบทเรียน “ผสานด้วยคีย์และดัชนี”

เชื่อมตารางด้วยคอลัมน์หรือดัชนี คุณปฏิบัติ Data Science Academy ด้วยโค้ดที่ใช้งานได้จริงที่คุณเรียกใช้โดยตรงในเบราว์เซอร์ และติวเตอร์ AI ตลอด 24/7 ตอบคำถามของคุณขณะที่คุณไปผ่านบทเรียน

คุณต้องมีประสบการณ์ก่อนที่จะเริ่มเรียน Data Science Academy หรือไม่

ไม่จำเป็นต้องมีประสบการณ์มาก่อน Data Science Academy บน CoddyKit ออกแบบมาสำหรับผู้เริ่มต้นไปจนถึงผู้เรียนขั้นสูง คุณสามารถเริ่มต้นที่นี่หรือเริ่มจากตัวแรกและเรียนด้วยความเร็วของคุณเอง นี่คือบทเรียนที่ 2 จากทั้งหมด 4 บทเรียน

บทเรียน “ผสานด้วยคีย์และดัชนี” ใช้เวลานานแค่ไหน

บทเรียน CoddyKit ส่วนใหญ่ใช้เวลาประมาณ 5–10 นาที แต่ละบทเรียนจึงสั้นและเป็นแบบโต้ตอบ คุณสามารถก้าวหน้าอย่างต่อเนื่องและกลับมาเรียนต่อจากตรงที่เพิ่งหยุดบนเว็บและแอปได้เลย

ฉันเขียนและรันโค้ดในบทเรียน Data Science Academy นี้ได้ไหม

ได้ บทเรียน Data Science Academy ทุกบทมีตัวแก้ไขโค้ดในตัว คุณจึงเขียนและรันโค้ดจริงได้เลยในเบราว์เซอร์ และได้รับข้อเสนอแนะจาก AI ในทันที — ไม่ต้องติดตั้งในเครื่องของคุณ

บทเรียนทั้งหมดในหลักสูตรนี้

  1. แบบใน แบบซ้าย แบบขวา และแบบนอก
  2. ผสานด้วยคีย์และดัชนี
  3. concat เพื่อวางต่อและผนวก
  4. วินิจฉัยการเชื่อมตารางที่ผิดพลาด
← กลับไปที่ Data Science Academy