SynfraCore
Synfracore
Start Learning
Navigation

Academies

Platform

RoadmapsLabsCertificationsInterviewPYQsAI AssistantCareer
Start Learning Free🗺️ Learning Roadmaps

MySQLOverview

What it is, why it matters, architecture and key concepts

✍️
Written by senior engineers. Reviewed for technical accuracy.· Updated 2025 · SynfraCore MySQL Team
Expert Content

MySQL — The World's Most Popular Open Source Database

MySQL powers some of the largest websites on earth — Facebook, Twitter, YouTube, Wikipedia, and Shopify. It's the most deployed relational database, valued for its simplicity, performance, and massive ecosystem.

MySQL vs PostgreSQL: When to Choose MySQL

Choose MySQL when:

Your team knows MySQL and your stack is LAMP/LEMP
Using managed services (AWS RDS MySQL, PlanetScale, Vitess)
Need maximum read performance for simple queries
Working with WordPress, Drupal, or other PHP applications
Using MySQL-native tools like Percona Toolkit

Choose PostgreSQL when:

You need advanced features (JSONB, full-text, window functions)
Complex queries and analytics
Strong ACID and consistency requirements
Need extensions (PostGIS, pg_vector, TimescaleDB)

Setup and Connect

bash
# Start with Docker
# 8.0 is an older LTS series — prefer 8.4 (LTS) or 9.x (Innovation) for new work
docker run -d --name mysql \
    -e MYSQL_ROOT_PASSWORD=rootpass \
    -e MYSQL_DATABASE=myapp \
    -e MYSQL_USER=appuser \
    -e MYSQL_PASSWORD=apppass \
    -p 3306:3306 mysql:8.4

# Connect
mysql -h 127.0.0.1 -u appuser -p myapp
mysql -u root -p

# Useful commands
SHOW DATABASES;
USE myapp;
SHOW TABLES;
DESCRIBE users;
SHOW CREATE TABLE users\G
SHOW PROCESSLIST;

Connecting from Python (connection pooling)

python
import mysql.connector
from mysql.connector import pooling

config = {
    "host": "localhost", "user": "appuser", "password": "apppass",
    "database": "myapp", "pool_name": "mypool", "pool_size": 10,
    "connect_timeout": 10, "use_pure": True,
}
pool = mysql.connector.pooling.MySQLConnectionPool(**config)

def execute_query(query: str, params: tuple = (), fetchall: bool = False):
    conn = pool.get_connection()
    cursor = conn.cursor(dictionary=True)
    try:
        cursor.execute(query, params)
        if fetchall:
            return cursor.fetchall()
        conn.commit()
        return cursor.lastrowid
    except mysql.connector.Error:
        conn.rollback()
        raise
    finally:
        cursor.close()
        conn.close()

users = execute_query(
    "SELECT id, email FROM users WHERE is_active = %s LIMIT %s",
    (1, 100), fetchall=True
)

A connection pool matters specifically because opening a new MySQL connection per request is expensive relative to the query itself — reusing a small pool of already-established connections avoids that repeated overhead under real load.

Core Concepts

sql
-- AUTO_INCREMENT (MySQL primary key)
CREATE TABLE users (
    id         BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
    email      VARCHAR(255) NOT NULL,
    name       VARCHAR(100) NOT NULL,
    created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
    updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
    PRIMARY KEY (id),
    UNIQUE KEY uk_email (email),
    INDEX idx_created (created_at)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- Always use utf8mb4 (not utf8) — supports emoji and all Unicode
-- InnoDB engine is required for transactions and foreign keys
Share:
Join our Community
Daily tips, job alerts, interview help — join engineers learning together
Up Next
MySQLPrerequisites
What to know or set up before starting
Also Worth Exploring
← Back to all MySQL modules
Prerequisites