MySQL + SQL · Lesson 1
Pivot Table Mysql
What is a Pivot?
A pivot turns row values into columns — for example, showing monthly sales as separate columns. MySQL does this with CASE + SUM.
Pivot with CASE
SELECT product,
SUM(CASE WHEN month = 'Jan' THEN amount ELSE 0 END) AS Jan,
SUM(CASE WHEN month = 'Feb' THEN amount ELSE 0 END) AS Feb
FROM sales
GROUP BY product;product Jan Feb
------- ---- ----
Pen 100 150
Summary
- MySQL has no PIVOT keyword — use
SUM(CASE WHEN ... THEN ... END). - Each CASE becomes one new column; GROUP BY the row label.
💻 Live Code Editor
Is page ki language (MYSQL) mein code likhein aur turant chalाएं — yahीं, bina kuch install kiye.Powered by OneCompiler. Agar editor na khule to yahान naye tab mein kholein.
💻 Live Code Editor
Is page ke program yahan ready hain — chalाएं, badlें aur seekhें. Bina kuch install kiye.
Powered by OneCompiler. Editor mein code apne aap aa jata hai — Run dabaakर output dekhें.
Agar load na ho to naye tab mein kholें.