Skip to content

Instantly share code, notes, and snippets.

@thevipulvats
Created March 15, 2025 13:55
Show Gist options
  • Save thevipulvats/f11db0bca4c35b30c9e2b2c9ad217bec to your computer and use it in GitHub Desktop.
Save thevipulvats/f11db0bca4c35b30c9e2b2c9ad217bec to your computer and use it in GitHub Desktop.
/*
* PRIMARY KEYS IN SQL
* This script demonstrates the concepts and best practices for using primary keys in database design
*/
-- Primary Keys - Key Benefits:
-- They uniquely identify each record in a table
-- They ensure no duplicate records exist
-- They provide a reference point for relationships between tables
-- They optimize database performance for record retrieval
-- SECTION 1: Basic Primary Key Implementation
-- Creating a table with a simple primary key
CREATE TABLE students (
student_id INT PRIMARY KEY,
first_name VARCHAR(50) NOT NULL,
last_name VARCHAR(50) NOT NULL,
email VARCHAR(100)
);
-- Inserting records with valid primary keys
INSERT INTO students (student_id, first_name, last_name, email)
VALUES
(1, 'John', 'Smith', '[email protected]'),
(2, 'Maria', 'Garcia', '[email protected]'),
(3, 'Ahmed', 'Khan', '[email protected]');
-- Demonstrating primary key constraint - This will fail
INSERT INTO students (student_id, first_name, last_name, email)
VALUES (1, 'Jane', 'Doe', '[email protected]');
-- Error Code: 1062. Duplicate entry '1' for key 'PRIMARY'
-- SECTION 2: Auto-increment Primary Keys
-- Creating a table with an auto-increment primary key
CREATE TABLE products (
product_id INT AUTO_INCREMENT PRIMARY KEY,
product_name VARCHAR(100) NOT NULL,
price DECIMAL(10, 2) NOT NULL,
description TEXT
);
-- With auto-increment, we don't need to specify the primary key value
INSERT INTO products (product_name, price, description)
VALUES
('Laptop', 1299.99, 'High-performance laptop'),
('Smartphone', 799.99, 'Latest model smartphone'),
('Headphones', 199.99, 'Noise-cancelling headphones');
-- View the auto-generated IDs
SELECT * FROM products;
-- SECTION 3: Adding Primary Keys to Existing Tables
-- Creating a table with a primary key defined separately
CREATE TABLE orders (
order_id INT,
customer_id INT,
order_date DATE NOT NULL,
total_amount DECIMAL(10, 2) NOT NULL,
PRIMARY KEY (order_id)
);
-- Create table without primary key
CREATE TABLE suppliers (
supplier_id INT,
supplier_name VARCHAR(100) NOT NULL,
contact_person VARCHAR(100)
);
-- Adding a primary key to an existing table
ALTER TABLE suppliers
ADD PRIMARY KEY (supplier_id);
-- SECTION 4: Composite Primary Keys
-- Creating a table with a composite primary key (multiple columns)
CREATE TABLE enrollments (
student_id INT,
course_id INT,
enrollment_date DATE NOT NULL,
grade VARCHAR(2),
PRIMARY KEY (student_id, course_id)
);
-- Insert records with unique combinations of the composite key
INSERT INTO enrollments (student_id, course_id, enrollment_date, grade)
VALUES
(1, 101, '2023-01-15', 'A'),
(1, 102, '2023-01-15', 'B+'), -- Same student, different course - OK
(2, 101, '2023-01-16', 'A-'), -- Different student, same course - OK
(3, 103, '2023-01-17', 'B');
-- This will fail - duplicate composite key (student_id + course_id)
INSERT INTO enrollments (student_id, course_id, enrollment_date, grade)
VALUES (1, 101, '2023-02-01', 'C');
-- Error: Duplicate entry '1-101' for key 'PRIMARY'
-- Primary Key Best Practices:
-- 1. Always include a primary key in every table
-- 2. Use auto-increment unless you have a specific reason not to
-- 3. Keep primary keys simple - use INT or BIGINT for numeric IDs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment