finding leap year in sql

Solutions on MaxInterview for finding leap year in sql by the best coders in the world

showing results for - "finding leap year in sql"
Salvatore
26 Jul 2019
1CASE WHEN (@YEAR % 4 = 0 AND @YEAR % 100 <> 0) OR @YEAR % 400 = 0 THEN 'LEAP YEAR'...
2