Web Development Tutorials
//

Category: Database Administration

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

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

Database Administration

Add a Foreign Key in MySQL

Add a foreign key in MySQL to link two tables and have the database enforce it, rejecting orphan rows while an ON DELETE CASCADE…

July 29, 2026