List all categories in alphabetical order
SELECT * FROM categories ORDER BY name ASC;
Retrieves and displays all categories from the database, sorted by name in ascending order.
SELECT * FROM categories ORDER BY name ASC;
Retrieves and displays all categories from the database, sorted by name in ascending order.