Web Development Tutorials
//

Category: Database Administration

Database Administration

Format Dates in MySQL With DATE_FORMAT

One DATETIME, three presentations: the DATE_FORMAT specifiers that matter (minutes are %i, never %m), DATEDIFF and DATE_ADD arithmetic, a monthly report, and when the…

August 15, 2026

Database Administration

Search Text With a MySQL FULLTEXT Index

Replace a slow LIKE '%word%' with a FULLTEXT index: rank matches by relevance in natural-language mode, require or exclude terms in boolean mode, and…

August 13, 2026

Database Administration

Export MySQL Query Results to a CSV File

SELECT ... INTO OUTFILE turns any query into a spreadsheet file, written by the server itself. Handle the quoting that keeps embedded commas safe,…

August 13, 2026

Database Administration

Combine Query Results With UNION in MySQL

A join widens a row by adding columns; UNION instead stacks one result on top of another. Build a single contact list from a…

August 12, 2026

Database Administration

Write a Subquery in MySQL

Write a subquery in MySQL to answer a question inside a question - a SELECT nested in another statement's WHERE or column list. This…

August 11, 2026