• 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

BITAND Function in Oracle SQL – PLSQL

November 5, 2012 by techhoneyadmin

The BITAND function in Oracle SQL / PLSQL is used to return an integer number representing an AND operation between the bits of expressions passed.

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

SELECT BITAND(expression1, expression2)
FROM table_name;

Expression1 and expression2 must resolve to positive integers

Example 1:

SELECT BITAND(20,10)
FROM DUAL;

Will return “0”


Example 2:

SELECT BITAND(20,30)
FROM DUAL;

Will return “20”


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

LN Function in Oracle SQL – PLSQL

November 5, 2012 by techhoneyadmin

The LN (natural log) function in Oracle SQL / PLSQL is used to return the natural logarithmic value of a number.

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

SELECT LN(n)
FROM table_name;

n must be a positive number

Example 1:

SELECT LN(20)
FROM DUAL;

Will return “2.99573227355399”


Example 2:

SELECT LN(1)
FROM DUAL; 

Will return “0”


Filed Under: function Tagged With: how to use ln (natural log) function in oracle database query, how to use ln (natural log) function in oracle plsql, how to use ln (natural log) function in oracle sql, ln (natural log) function in oracle plsql, ln (natural log) function in oracle sql, LNPLSQL, syntax and example of ln (natural log) function in oracle database query, syntax and example of ln (natural log) function in oracle plsql, syntax and example of ln (natural log) function in oracle sql, using ln (natural log) function in oracle database query, using ln (natural log) function in oracle plsql, using ln (natural log) function in oracle sql

ATAN2 Function in Oracle SQL – PLSQL

November 5, 2012 by techhoneyadmin

The ATAN2 function in Oracle SQL / PLSQL is used to get arc tangent of a n and m.

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

SELECT ATAN2(N,M)
FROM table_name;

N and M are the numbers which are used to calculate the arc tangents.

Example 1:

SELECT ATAN2(0.4,0.6)
FROM DUAL;

Will return “0.588002603547568”


Example 2:

SELECT ATAN2(0,1)
 FROM DUAL;

Will return “0”


Example 3:

SELECT ATAN2(-0.4,0.4)
 FROM DUAL;

Will return “-0.785398163397448”


Example 4:

SELECT ATAN2(-0.4,-0.4)
 FROM DUAL;

Will return “-2.35619449019234”


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

ATAN Function in Oracle SQL – PLSQL

November 5, 2012 by techhoneyadmin

The ATAN function in Oracle SQL / PLSQL is used to get arc tangent of a number.

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

SELECT ATAN(N)
FROM table;

N is the number whose arc tangent is to be determined.

Example 1:

SELECT ATAN(0.4)
FROM DUAL;

Will return “0.380506377112365”


Example 2:

SELECT ATAN(0)
 FROM DUAL;

Will return “0”


Example 3:

SELECT ATAN(-0.4)
 FROM DUAL;

Will return “-0.380506377112365”


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

ACOS Function in Oracle SQL – PLSQL

November 5, 2012 by techhoneyadmin

The ACOS function in Oracle SQL / PLSQL is used to get arc cosine of a number.

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

SELECT ACOS(N)
FROM table_name;

N is the number whose arc cosine is to be determined.

Example 1:

SELECT ACOS(0.4)
FROM DUAL;

Will return “1.15927948072741”


Example 2:

SELECT ACOS(0)
 FROM DUAL;

Will return “1.5707963267949”


Example 3:

SELECT ACOS(-0.4)
 FROM DUAL;

Will return “1.98231317286238”


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

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 36
  • Page 37
  • Page 38
  • Page 39
  • Page 40
  • Interim pages omitted …
  • Page 76
  • Go to Next Page »

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