Using the SIN function to find the sine of 30 degrees : SIN « Numerical Math Functions « Oracle PL/SQL Tutorial






SQL>
SQL> -- create demo table
SQL> create table myTable(
  2    value1           NUMBER(3),
  3    value2           NUMBER(3),
  4    value3           NUMBER(3)
  5  )
  6  /

Table created.

SQL>
SQL> -- prepare data
SQL> insert into myTable(value1,value2, value3) values (30,60,90)
  2  /

1 row created.

SQL> select * from myTable
  2  /

    VALUE1     VALUE2     VALUE3
---------- ---------- ----------
        30         60         90

SQL>
SQL> SELECT SIN(value1*2*3.1416/360)FROM myTable
  2  /

SIN(VALUE1*2*3.1416/360)
------------------------
               .50000106

SQL>
SQL>
SQL> -- clean the table
SQL> drop table myTable
  2  /

Table dropped.








14.19.SIN
14.19.1.Ordinary Trigonometry Functions
14.19.2.Using the SIN function to find the sine of 30 degrees
14.19.3.SIN(0)
14.19.4.select sin(30*3.14159265/180)
14.19.5.ABS(-123) ABS(0) ABS(456) SIGN(-123) SIGN(0) SIGN(456)