Tag

Derived Table

0 views collected around this technical thread.

Aikesheng Open Source Community
Aikesheng Open Source Community
Mar 10, 2020 · Databases

Investigating a MySQL RAND() Bug in Derived Tables (MySQL 5.7.25)

The article documents a puzzling MySQL 5.7.25 bug where RAND() in a derived table is unexpectedly re‑evaluated in the outer query, explains the step‑by‑step reproduction, analyses the cause, and provides official work‑arounds for both MySQL 5.7 and 8.0.

DatabaseDerived TableMySQL
0 likes · 6 min read
Investigating a MySQL RAND() Bug in Derived Tables (MySQL 5.7.25)
Aikesheng Open Source Community
Aikesheng Open Source Community
Mar 3, 2020 · Databases

Optimizing a Slow MySQL Query with Derived Tables and UNION ALL

This article analyzes a slow MySQL aggregation query that joins a large table with a derived table built from many UNION ALL subqueries, explains the execution plan and derived‑table materialization, and presents two optimization approaches—adding taskname indexes and rewriting the query or using a temporary indexed table—to dramatically reduce execution time while preserving result semantics.

Derived TableIndexMySQL
0 likes · 11 min read
Optimizing a Slow MySQL Query with Derived Tables and UNION ALL