Web Development Tutorials
//

Tag: SQL

Database Administration

Create a View in MySQL

A view stores a SELECT under a name, so you can query it like a table while the data stays live in the base…

August 9, 2026

Programming

Paginate MySQL Results With PHP PDO

Splitting a long result set across pages comes down to turning a page number into a LIMIT and an OFFSET. This tutorial counts the…

August 8, 2026

Database Administration

Create an Index and Read EXPLAIN in MySQL

Create an index in MySQL and use EXPLAIN to prove it worked, turning a 5,000-row full table scan into a targeted lookup of just…

July 30, 2026