Oracle PL/SQL ACOS function example

摘要: The ACOS() function returns the arc cosine of input n, the input n must be in the range of -1 to 1. The function will return a value in the range of 0 to pi, expressed in radians.

The ACOS() function returns the arc cosine of input n, the input n must be in the range of -1 to 1. The function will return a value in the range of 0 to pi, expressed in radians.

ACOS function examples

SELECT ACOS(.2) FROM DUAL;
-- output
1.36943840600456582777619613942212803186
SELECT ACOS(-.4) FROM DUAL; 
-- output
1.98231317286238463861605958925708704694
SELECT ACOS(-1) FROM DUAL;  
-- output
3.1415926535897932384626433832795028842
SELECT ACOS(1) FROM DUAL;   
-- output

Pass value 1.2 which is not in range -1 to 1, and notice the error.

SELECT ACOS(1.2) FROM DUAL;
-- output
ORA-01428: argument '1.2' is out of range
01428. 00000 -  "argument '%s' is out of range"

References

  1. ACOS Function :- Oracle official docs

上一篇: Oracle PL/SQL FLOOR function example
下一篇: Java How to print a Pyramid
 评论 ( What Do You Think )
名称
邮箱
网址
评论
验证
   
 

 


  • 微信公众号

  • 我的微信

站点声明:

1、一号门博客CMS,由Python, MySQL, Nginx, Wsgi 强力驱动

2、部分文章或者资源来源于互联网, 有时候很难判断是否侵权, 若有侵权, 请联系邮箱:summer@yihaomen.com, 同时欢迎大家注册用户,主动发布无版权争议的 文章/资源.

3、鄂ICP备14001754号-3, 鄂公网安备 42280202422812号