This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* GENERATE CALENDAR TABLE FOR MYSQL WITH WEEKEND AND HOLIDAYS | |
* Added easter-function from http://planet.mysql.com/entry/?id=30328 | |
* Added Norwegian holidays, holidays are marked with a '1' | |
* Create function first, to be used in procedure | |
* Updated (2019-03-19): Changed Easter calculation, fixed some errors | |
*/ | |
DELIMITER // | |
CREATE FUNCTION EasterSunday(inYear YEAR) RETURNS DATE DETERMINISTIC | |
BEGIN | |
DECLARE a, b, c, d, e, f, g, h, i, k, l, m, n, p INT; |