Skip to content

Instantly share code, notes, and snippets.

@liron-navon
Last active October 13, 2021 13:46
Show Gist options
  • Save liron-navon/c8850723e714222dc21d0c263764392e to your computer and use it in GitHub Desktop.
Save liron-navon/c8850723e714222dc21d0c263764392e to your computer and use it in GitHub Desktop.
CREATE PROCEDURE mischievousNephews()
BEGIN
SELECT
WEEKDAY(mischief_date) AS weekday,
mischief_date,
author,
title
FROM
mischief
ORDER BY
weekday,
FIELD(author, 'Huey', 'Dewey' ,'Louie'),
mischief_date,
title;
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment