DEV Community

Cover image for A key constraint blunder ruined my MySQL practical exam. Don't let it happen to you.
Vedangi Thokal
Vedangi Thokal

Posted on

A key constraint blunder ruined my MySQL practical exam. Don't let it happen to you.

I Messed Up My MySQL Practical! Here's How You Can Avoid My Mistake

I'm gonna tell you a story about how a tiny mistake almost wrecked my MySQL lab exam. It's all about keys, those little things that keep your database organized.

So, here's what happened: I forgot to put a composite primary key in one of my relationship tables. That's like forgetting to put a lock on a door — things get messy real fast.

To fix the mess, I had to revisit the fundamentals of keys in MySQL:

Types of Keys:

  1. Primary Key: A guarantee that every row has a unique identifier.
  2. Foreign Key: A bridge between tables, referencing a primary key in another table to enforce referential integrity.
  3. Unique Key: A constraint that prevents duplicates in specific columns, ensuring each value is one-of-a-kind.
  4. Composite Key: A primary key composed of multiple columns, often used in relationship tables to establish unique relationships.

✨Primary Key: The Main Label for Every Item

Think of this as a name tag for each row in a table. It's unique and makes sure nothing gets mixed up.
Constraints: Must be unique and not null (every item needs a name tag!).
Code example:

CREATE TABLE `customers` (
  `customer_id` INT NOT NULL AUTO_INCREMENT,  // This is the primary key
  `name` VARCHAR(50),
  PRIMARY KEY (`customer_id`)
);
Enter fullscreen mode Exit fullscreen mode

✨Foreign Key: The Reference Tag that Connects Items

This key links row to another rowin a different table.
Constraints: References a primary key in another table, like a friend's name tag in a different box.
Code example:

CREATE TABLE `orders` (
  `order_id` INT NOT NULL AUTO_INCREMENT,
  `customer_id` INT,  // This is a foreign key, linking to the "customers" table
  `order_date` DATE,
  PRIMARY KEY (`order_id`),
  FOREIGN KEY (`customer_id`) REFERENCES `customers` (`customer_id`)
);
Enter fullscreen mode Exit fullscreen mode

✨Unique Key: The Special Feature Label

This label means only one item (row) can have that specific feature (column value).
Constraints: Enforces uniqueness, but the value can be null (not every item needs a special feature).
Code example:

CREATE TABLE `products` (
  `product_id` INT NOT NULL AUTO_INCREMENT,
  `product_code` VARCHAR(10) UNIQUE,  // This is a unique key
  `product_name` VARCHAR(50),
  PRIMARY KEY (`product_id`)
);
Enter fullscreen mode Exit fullscreen mode

✨Composite Key: The Double Label for Special Boxes

A double ID tag for rows in a table.
Constraints: Each column within the composite key must be unique as a group.
Code example:

CREATE TABLE `course_registrations` (
  `student_id` INT,
  `course_id` INT,
  PRIMARY KEY (`student_id`, `course_id`)  // This is a composite key
);
Enter fullscreen mode Exit fullscreen mode

What happened to my database without a composite primary key?

Four words.
Data Duplication and Query Chaos.

Here's everything happened without a composite primary key:

  1. Duplicate Entries: Like uninvited guests at a party, duplicate entries started cropping up in the table, causing confusion and inconsistencies.
  2. Ambiguous Relationships: The table's purpose was to link entities, but without a clear way to identify unique relationships, things got tangled up.
  3. Unpredictable Queries: My SQL queries, designed to retrieve specific data, suddenly became unreliable. They returned inconsistent results, making it hard to trust the information I was getting.

To fix my mess, I had to add the missing composite key

Here's what I learned:

  1. Plan your keys carefully: Think about them like you'd think about organizing your closet. You need to know where everything goes and how to find it.
  2. Draw pictures of your tables and how they connect: This helps you see where you might need composite keys.
  3. Double-check your keys and test your database often: Make sure your data is staying organized and working like it should.

Remember, keys are like the guardians of your database. They keep things in order and make sure your data stays reliable. Don't let a key mistake mess up your project—or in my case, a database practical!

Let's have a chat!

🎯 Linkedin

🎯 Twitter

Top comments (0)