Oracle COS Function


/ Published in: SQL
Save to your folder(s)

A few examples of the COS function.


Copy this code and paste it in your HTML
  1. --COS
  2.  
  3. SELECT COS(3.141) AS cos_value
  4. FROM dual;
  5.  
  6. SELECT COS(1) AS cos_value
  7. FROM dual;
  8.  
  9. SELECT COS(5.2) AS cos_value
  10. FROM dual;

URL: http://www.databasestar.com/oracle-cos-function

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.