检查给定年份是否是 PL/SQL 中的闰年

2023年 9月 22日 50.6k 0

检查给定年份是否是 PL/SQL 中的闰年

这里我们将看到如何使用 PL/SQL 检查给定年份是否是闰年。在PL/SQL代码中,一些命令组被排列在相关的语句声明块中。

闰年检查算法如下。

算法

isLeapYear(year):
begin
if year is divisible by 4 and not divisible by 100, then
it is leap year
else if the number is divisible by 400, then
it is leap year
else
it is not leap year
end

登录后复制

示例

DECLARE
year NUMBER := 2012;
BEGIN
IF MOD(year, 4)=0
AND
MOD(year, 100)!=0
OR
MOD(year, 400)=0 THEN
dbms_output.Put_line(year || ' is leap year ');
ELSE
dbms_output.Put_line(year || ' is not leap year.');
END IF;
END;

登录后复制

输出

2012 is leap year

登录后复制

以上就是检查给定年份是否是 PL/SQL 中的闰年的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!

相关文章

Oracle如何使用授予和撤销权限的语法和示例
Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
社区版oceanbase安装
Oracle 导出CSV工具-sqluldr2
ETL数据集成丨快速将MySQL数据迁移至Doris数据库

发布评论