• Skip to primary navigation
  • Skip to main content

Tech Honey

The #1 Website for Oracle PL/SQL, OA Framework and HTML

  • Home
  • HTML
    • Tags in HTML
    • HTML Attributes
  • OA Framework
    • Item in OAF
    • Regions in OAF
    • General OAF Topics
  • Oracle
    • statement
    • function
    • clause
    • plsql
    • sql

Oracle

TANH Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The TANH function in Oracle SQL / PLSQL is used to calculate hyperbolic tangent of numeric value where numeric value is provided in radian format.

It’s mathematically equal to TANH(N).

Syntax for the TANH function in Oracle SQL / PLSQL is:

SELECT TANH(radian)
FROM table_name;

Let’s take an example for understanding:

Suppose we want to get the hyperbolic tangent of 30 degree.

SELECT TANH(30*22/(7*180))
FROM dual;

The output of the above statement will be:

TANH(30*22/(7*180))
0.480634857866646

Notice that we have changed 30 degrees into radians while passing it in TANH function.


Filed Under: function Tagged With: how to use tanh function in oracle database query, how to use tanh function in oracle plsql, how to use tanh function in oracle sql, syntax and example of tanh function in oracle database query, syntax and example of tanh function in oracle plsql, syntax and example of tanh function in oracle sql, tanh function in oracle plsql, tanh function in oracle sql, TANHPLSQL, using tanh function in oracle database query, using tanh function in oracle plsql, using tanh function in oracle sql

TAN Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The TAN function in Oracle SQL / PLSQL is used to calculate tangent of numeric value where numeric value is provided in radian format.

It’s mathematically equal to TAN(N).

Syntax for the TAN function in Oracle SQL / PLSQL is:

SELECT TAN(radian)
FROM table_name;

Let’s take an example for understanding:

Suppose we want to get the tangent of 30 degree.

SELECT TAN(30*22/(7*180))
FROM dual;

The output of the above statement will be:

TAN(30*22/(7*180))
0.57763130100345

Notice that we have changed 30 degrees into radians while passing it in TAN function.


Filed Under: function Tagged With: how to use tan function in oracle database query, how to use tan function in oracle plsql, how to use tan function in oracle sql, syntax and example of tan function in oracle database query, syntax and example of tan function in oracle plsql, syntax and example of tan function in oracle sql, tan function in oracle plsql, tan function in oracle sql, TANPLSQL, using tan function in oracle database query, using tan function in oracle plsql, using tan function in oracle sql

SINH Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The SINH function in Oracle SQL / PLSQL is used to calculate hyperbolic sine of numeric value where numeric value is provided in radian format.

It’s mathematically equal to SINH(N).

Syntax for the SINH function in Oracle SQL / PLSQL is:

SELECT SINH(radian)
FROM table_name;

Let’s take an example for understanding:
Suppose we want to get the hyperbolic sine of 30 degree.

SELECT SINH(30*22/(7*180))
FROM dual;

The output of the above statement will be:

SINH(30*22/(7*180))
0.548093789242759

Notice that we have changed 30 degrees into radians while passing it in SINH function.


Filed Under: function Tagged With: how to use sinh function in oracle database query, how to use sinh function in oracle plsql, how to use sinh function in oracle sql, sinh function in oracle plsql, sinh function in oracle sql, SINHPLSQL, syntax and example of sinh function in oracle database query, syntax and example of sinh function in oracle plsql, syntax and example of sinh function in oracle sql, using sinh function in oracle database query, using sinh function in oracle plsql, using sinh function in oracle sql

SIN Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The SIN function in Oracle SQL / PLSQL is used to calculate sine of numeric value where numeric value is provided in radian format.

It’s mathematically equal to SIN(N).

Syntax for the SIN function in Oracle SQL / PLSQL is:

SELECT SIN(radian)
FROM table_name;

Let’s take an example for understanding:

Suppose we want to get the sine of 30 degree.

SELECT SIN(30*22/(7*180))
FROM dual;

The output of the above statement will be:

SIN(30*22/(7*180))
0.50018250219967

Notice that we have changed 30 degrees into radians while passing it in SIN function.


Filed Under: function Tagged With: how to use sin function in oracle database query, how to use sin function in oracle plsql, how to use sin function in oracle sql, sin function in oracle plsql, sin function in oracle sql, SINPLSQL, syntax and example of sin function in oracle database query, syntax and example of sin function in oracle plsql, syntax and example of sin function in oracle sql, using sin function in oracle database query, using sin function in oracle plsql, using sin function in oracle sql

COSH Function in Oracle SQL – PLSQL

October 29, 2012 by techhoneyadmin

The COSH function in Oracle SQL / PLSQL is used to calculate hyperbolic cosine of numeric value where numeric value is provided in radian format.

It’s mathematically equal to COSH(N).

Syntax for the COSH function in Oracle SQL / PLSQL is:

SELECT COSH(radian)
FROM table_name;

Let’s take an example for understanding:

Suppose we want to get the hyperbolic cosine of 30 degree.

SELECT COSH(30*22/(7*180))
FROM dual;

The output of the above statement will be:

COSH(30*22/(7*180))
1.14035380553865

Notice that we have changed 30 degrees into radians while passing it in COSH function.


Filed Under: function Tagged With: cosh function in oracle plsql, cosh function in oracle sql, COSHPLSQL, how to use cosh function in oracle database query, how to use cosh function in oracle plsql, how to use cosh function in oracle sql, syntax and example of cosh function in oracle database query, syntax and example of cosh function in oracle plsql, syntax and example of cosh function in oracle sql, using cosh function in oracle database query, using cosh function in oracle plsql, using cosh function in oracle sql

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 34
  • Page 35
  • Page 36
  • Page 37
  • Page 38
  • Interim pages omitted …
  • Page 43
  • Go to Next Page »

Copyright © 2025 · Parallax Pro on Genesis Framework · WordPress · Log in