database
Installation
SKILL.md
Database Development
Schema design, optimization, and management best practices.
Schema Design
Normalization
-- 1NF: Atomic values, no repeating groups
-- BAD
CREATE TABLE orders (
id INT,
products VARCHAR(255) -- "shirt,pants,shoes" - NOT atomic
);