Tagged articles
205 articles
Page 3 of 3
ITPUB
ITPUB
Nov 19, 2015 · Databases

Essential MySQL & Oracle Development Guidelines for Tables, Indexes, and SQL

This guide presents practical recommendations for MySQL and Oracle development, covering table design, appropriate data types, indexing best practices, and efficient SQL patterns to improve performance, maintainability, and security.

Database designIndex OptimizationSQL Performance
0 likes · 7 min read
Essential MySQL & Oracle Development Guidelines for Tables, Indexes, and SQL
Java High-Performance Architecture
Java High-Performance Architecture
Jul 29, 2015 · Databases

How Indexes Enable Efficient GROUP BY Queries in MySQL

This article explains why GROUP BY requires sorting like ORDER BY, how a suitable index can satisfy both operations, and outlines the precise conditions—including single‑table queries, left‑most index prefixes, constant values, and limited aggregates—that allow MySQL to execute GROUP BY using an index scan.

GROUP BYIndex OptimizationSQL
0 likes · 3 min read
How Indexes Enable Efficient GROUP BY Queries in MySQL