码迷,mamicode.com
首页 > 数据库 > 详细

pl/sql中的取模运算

时间:2017-07-26 22:07:00      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:部分   例子   输入   begin   arc   declare   div   pre   tput   

pl/sql语言的取模(即求余)运算不使用大部分语言所支持的 a%b

而是使用函数 mod(a,b)

例子如下:写一个匿名块判断某年是否是闰年,能被4但是不能被100整除,或者能被400整除

 1 declare
 2   judge      varchar2(200);
 3   year_input number;
 4 begin
 5   year_input := &输入年份;
 6   if (mod(year_input, 400) = 0 or
 7      (mod(year_input, 4) = 0 and mod(year_input, 100) != 0)) then
 8     judge := Leap Year;
 9   else
10     judge := Not a Leap Year;
11     dbms_output.put_line(judge);
12   end if;
13 end;

2017-07-26

 

pl/sql中的取模运算

标签:部分   例子   输入   begin   arc   declare   div   pre   tput   

原文地址:http://www.cnblogs.com/mallocLNode/p/7241705.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!