• 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

USER Function in Oracle SQL – PLSQL

November 7, 2012 by techhoneyadmin

The USER function in Oracle SQL / PLSQL is used to retrieve the user id of the current Oracle Session.

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

SELECT USER
FROM table_name;

Example:

Using USER function to retrieve the user name for the current session

SELECT USER
FROM dual; 

Will return the name of the user logged in the current Oracle Session e.g. “System” or “Scott”.


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

OVER Clause in Oracle SQL – PLSQL

November 7, 2012 by techhoneyadmin

In simple terms the OVER clause in Oracle SQL / PLSQL specifies the partition or order in which an analytical function will operate.

Syntax for the OVER clause in Oracle SQL / PLSQL is:
SELECT columns
,aggregate_function OVER (PARTITION BY column(s))
FROM table_name;

Example 1:

Using OVER clause

Suppose we have a table named ‘employee’ as shown below:

Employee_Id Employee_Name Salary Department Commission
101 Emp A 10000 Sales 10
102 Emp B 20000 IT 20
103 Emp C 28000 IT 20
104 Emp D 30000 Support
105 Emp E 32000 Sales 10
106 Emp F 40000 Sales 10

If we write our query as:

SELECT employee_id
       ,employee_name
       ,department
       ,COUNT(*) OVER (PARTITION BY department) Total
FROM employee;

We will get the following result:

Employee_Id Employee_Name Department Total
103 Emp C IT 2
102 Emp B IT 2
106 Emp F Sales 3
105 Emp E Sales 3
101 Emp A Sales 3
104 Emp D Support 1

Here we have used the OVER clause to get ‘Total’ column where we have retrieved ‘2’ for ‘IT’ department as there are ‘2’ records available in employee table for ‘IT’ department similarly we have ‘3’ and ‘1’ records for ‘Sales’ and ‘Support’ departments.


Filed Under: clause Tagged With: how to use over clause in oracle database query, how to use over clause in oracle plsql, how to use over clause in oracle sql, over clause in oracle plsql, over clause in oracle sql, OVERPLSQL, syntax and example of over clause in oracle database query, syntax and example of over clause in oracle plsql, syntax and example of over clause in oracle sql, using over clause in oracle database query, using over clause in oracle plsql, using over clause in oracle sql

PARTITION BY Keyword in Oracle SQL – PLSQL

November 7, 2012 by techhoneyadmin

In simple terms the PARTITION BY keyword in Oracle SQL / PLSQL is used to partition or segregate the records based on groups

Syntax for the PARTITION BY keyword in Oracle SQL / PLSQL is:
SELECT columns
,aggregate_function OVER (PARTITION BY column(s))
FROM table_name;

Example 1:

Using PARTITION BY keyword

Suppose we have a table named ‘employee’ as shown below:

Employee_Id Employee_Name Salary Department Commission
101 Emp A 10000 Sales 10
102 Emp B 20000 IT 20
103 Emp C 28000 IT 20
104 Emp D 30000 Support
105 Emp E 32000 Sales 10
106 Emp F 40000 Sales 10

If we write our query as:

SELECT employee_id
       ,employee_name
       ,department
       ,COUNT(*) OVER (PARTITION BY department) Total
FROM employee;

We will get the following result:

Employee_Id Employee_Name Department Total
103 Emp C IT 2
102 Emp B IT 2
106 Emp F Sales 3
105 Emp E Sales 3
101 Emp A Sales 3
104 Emp D Support 1

Here we can see that in the ‘Total’ column we have retrieved ‘2’ for ‘IT’ department as there are ‘2’ records available in employee table for ‘IT’ department similarly we have ‘3’ and ‘1’ records for ‘Sales’ and ‘Support’ departments.


Filed Under: sql Tagged With: how to use partition_by keyword in oracle database query, how to use partition_by keyword in oracle plsql, how to use partition_by keyword in oracle sql, PARTITIONBYPLSQL, partition_by keyword in oracle plsql, partition_by keyword in oracle sql, syntax and example of partition_by keyword in oracle database query, syntax and example of partition_by keyword in oracle plsql, syntax and example of partition_by keyword in oracle sql, using partition_by keyword in oracle database query, using partition_by keyword in oracle plsql, using partition_by keyword in oracle sql

PERCENT_RANK Function in Oracle SQL – PLSQL

November 7, 2012 by techhoneyadmin

Oracle SQL / PLSQL PERCENT_RANK function is used to calculate the rank of a hypothetical row.

  • As an aggregate function a rank is calculated as r minus 1 divided by the number of rows in the aggregate group.
  • As an analytical function rank is calculated as r minus 1 divided by the number of rows in the aggregate group minus 1.
  • A Percent_Rank returns a value between 0 and 1 inclusive.

The SQL PERCENT_RANK function can be used in as an Aggregate and Analytical Function.

Oracle SQL / PLSQL PERCENT_RANK Function Syntax as an Aggregate Function is:

SELECT PERCENT_RANK(expression1, expression2 . . , expressionN)
WITHIN GROUP (ORDER BY column1, column2, . . , columnN)
FROM table_name;

Oracle SQL / PLSQL PERCENT_RANK Function Syntax as an Analytical Function is:

SELECT PERCENT_RANK() OVER ([PARTITION BY column(s)] ORDER BY column(s))
FROM table_name;

Example 1: Using Oracle SQL / PLSQL PERCENT_RANK Function as AGGREGATE function

Suppose we have a table named ‘employee’ as shown below:

Employee_Id Employee_Name Salary Department Commission
101 Emp A 10000 Sales 10
102 Emp B 20000 IT 20
103 Emp C 28000 IT 20
104 Emp D 30000 Support
105 Emp E 32000 Sales 10
106 Emp F 40000 Sales 10

If we write our query Oracle SQL PERCENT_RANK Function with SELECT Statement as:

SELECT PERCENT_RANK(15000) WITHIN GROUP (ORDER BY salary)
FROM employee; 

We will get ‘0.166666666666667’ as the PERCENT_RANK of 15000 because as per the data in the ‘employee’ table if we sort the ‘salary’ column from lowest to highest salary then 15000 will come at the 2nd position in that list and the total number of rows will be 6.

Hence the percent_rank for 15000 is calculated as:

(Position of the row-1/total rows) i.e. (2-1/6) = 1/6 = 0.166666666666667


Example 2: Using Oracle SQL / PLSQL PERCENT_RANK Function as ANALYTICAL function

As mentioned earlier, the syntax for the Oracle SQL PERCENT_RANK function as an Analytical Function is:

SELECT PERCENT_RANK() OVER ([PARTITION BY column(s)] ORDER BY column(s))
FROM table_name;

Suppose we have a table named ‘employee’ as shown below:

Employee_Id Employee_Name Salary Department Commission
101 Emp A 10000 Sales 10
102 Emp B 20000 IT 20
103 Emp C 28000 IT 20
104 Emp D 30000 Support
105 Emp E 32000 Sales 10
106 Emp F 40000 Sales 10

If we write our query Oracle SQL PERCENT_RANK Function with SELECT Statement as:

SELECT employee_name
       ,salary
       ,department
       ,PERCENT_RANK() OVER (PARTITION BY department ORDER BY salary) Percent_Ranking
FROM employee; 

We will get the following output:

Employee_Name Salary Department Percent_Ranking
Emp B 20000 IT 0
Emp C 28000 IT 1
Emp A 10000 Sales 0
Emp E 32000 Sales 0.5
Emp F 40000 Sales 1
Emp D 30000 Support 0

Here we can see that Oracle SQL PERCENT_RANK function is being used as an analytical function.

It returns the position or rank of records in group of records partitioned by a criteria e.g. in our case we have partitioned the records by ‘department’ and then within that partition we are ranking the records relative to each other.

First row is always given a percent rank of ‘0’ by Oracle SQL PERCENT_RANK Function.

The PERCENT_RANK is this case is calculated as:

(Position Of the rows-1/total rows -1)

e.g. for Emp E percent rank is calculated using

(Position Of the rows-1/total rows -1) as (2-1/3-1) = (1/2) = 0.5

And for Emp F percent rank is calculated using

(Position Of the rows-1/total rows -1) as (3-1/3-1) = 2/2 = 1


Filed Under: function Tagged With: how to get percent rank in oracle sql, oracle sql PERCENT RANK function syntax and example, oracle sql plsql percent rank function, PERCENTRANKPLSQL

DENSE_RANK Function in Oracle SQL – PLSQL

November 7, 2012 by techhoneyadmin

The Dense_Rank function in Oracle SQL / PLSQL is used to return the rank or position of a value in a group of values. It’s very similar to RANK function but RANK function can cause non-consecutive rankings if the tested values are same.

The DENSE_RANK function can be used in as an Aggregate and Analytical Function.

Syntax for the DENSE_RANK function as an Aggregate Function in Oracle SQL / PLSQL is:

SELECT DENSE_RANK(expression1, expression2, . . , expressionN)
WITHIN GROUP (ORDER BY column1, column2, . . , columnN)
FROM table_name;

Syntax for the DENSE_RANK function as an Analytical Function in Oracle SQL / PLSQL is:

SELECT DENSE_RANK() OVER ([PARTITION BY column(s)] ORDER BY column(s))
FROM table_name;

The number of expressions the DENSE_RANK function and ORDER BY clause must be the same and also the data types should be compatible.

Example 1:

Using DENSE_RANK as AGGREGATE function

Suppose we have a table named ‘employee’ as shown below:

Employee_Id Employee_Name Salary Department Commission
101 Emp A 10000 Sales 10
102 Emp B 20000 IT 20
103 Emp C 28000 IT 20
104 Emp D 30000 Support
105 Emp E 32000 Sales 10

If we write our query as:

SELECT DENSE_RANK(15000) WITHIN GROUP (ORDER BY salary)
FROM employee; 

Will return ‘2’ as the rank of 15000 because as per the data in the ‘employee’ table if we sort the ‘salary’ column from lowest to highest salary then 15000 will come at the 2nd position in that list.


Example 2:

Using DENSE_RANK as ANALYTICAL function

Syntax for the DENSE_RANK function as an Analytical Function in Oracle SQL / PLSQL is:

SELECT DENSE_RANK() OVER ([PARTITION BY column(s)] ORDER BY column(s))
FROM table_name;

Suppose we have a table named ‘employee’ as shown below:

Employee_Id Employee_Name Salary Department Commission
101 Emp A 10000 Sales 10
102 Emp B 20000 IT 20
103 Emp C 28000 IT 20
104 Emp D 30000 Support
105 Emp E 32000 Sales 10

If we write our query as:

SELECT employee_name
       ,salary
       ,department
       ,DENSE_RANK() OVER (PARTITION BY department ORDER BY salary) Dense_Ranking
FROM employee; 
Employee_Name Salary Department Dense_Ranking
Emp B 20000 IT 1
Emp C 28000 IT 2
Emp A 10000 Sales 1
Emp E 32000 Sales 2
Emp D 30000 Support 1

Here we can see that DENSE_RANK function is being used as an analytical function and it returns the position or rank of records in group of records partitioned by a criteria e.g. in our case we have partitioned the records by ‘department’ and then within that partition we are ranking the records relative to each other.

‘Emp B’ is having a rank of 1 and ‘Emp C’ is having a rank 2 in ‘IT’ partition because we have sorted the list by ‘Salary’ and ‘Emp B’s salary’ is less than ‘Emp C’s salary’ within the ‘IT’ partition.

Similarly with in ‘Sales’ partition ‘Emp A’ is having less salary than ‘Emp E’ that’s why ‘Emp A’ is having rank 1 and ‘Emp E’ having rank 2.


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

  • « Go to Previous Page
  • Page 1
  • Interim pages omitted …
  • Page 32
  • Page 33
  • Page 34
  • Page 35
  • Page 36
  • Interim pages omitted …
  • Page 76
  • Go to Next Page »

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