+ Write Article

Oracle Articles Examples, Tutorials and Articles

Published by
SBH
Article Preview
Objective

The article demonstrates the use of DISTINCT clause in SQL which is used to restrict the duplicate rows in your SELECT Queries.

1. Introduction

A SELECT query displays all the data contained by the table, irrespective of quality and authenticity ...
Read More Read More 2 Comments
Published by
SBH
Objective

The article shows the use of EXISTS operator in SQL.

Introduction

EXISTS operator is used in WHERE conditions to test the existence of at least one matching record in subquery of the main query. EXISTS operator executes the sub query and returns ...
Read More Read More
Published by
SBH
Article Preview
Objective

The article explains the various SQL data types used in the Oracle Database.

Overview

As a primary concept of database, every tuple must contain a value of a valid data type. Data type represents the family of classification of a value. Any value ...
Read More Read More
Published by
SBH
Article Preview
Objective

The article explains the Aggregate functions in SQL.

1. Introduction

Apart from the single row functions like CONCAT, SUBSTR, INSTR, NVL and others, Oracle provides Aggregate functions also. Unlike single Row SQL functions, Aggregate functions ...
Read More Read More
Published by
SBH
1. Introduction

WHERE clause in Oracle adds condition to the result set and restricts it. This implies that the final result by virtue of these condition majorly depend on Condition framing.
Two terms take part in a condition on account of their relation, which is nothing but ...
Read More Read More 4 Comments
Published by
SBH
Article Preview
Objective

The article explains how to restrict GROUP BY results with the use of HAVING clause.

1. HAVING Clause

GROUP BY clause groups the query result set and produces aggregated results within the group like count, sum, maximum and minimum. For cases, where ...
Read More Read More
Published by
SBH
Article Preview
Objective

The article covers the GROUP BY clause in SELECT statement. It demonstrates the usage guidelines with examples.

1. GROUP BY Clause – Definition

GROUP BY allows developers to group the result set based on columns and produce aggregate results at ...
Read More Read More
Published by
SBH
Article Preview
Objective

The article explains the use of ORDER BY clause in SELECT statement for sorting the query result set.

1. The ORDER BY Clause

Ordering of data in unified direction is known as Sorting. In Oracle, it is achieved by ORDER BY clause, which follows WHERE ...
Read More Read More
Published by
SBH
Article Preview
Objective

The article explains the use of Logical operators (AND Condition, OR Condition and NOT Condition) in clubbing the conditions in a SELECT statement.

1. Introduction to Logical operators

To ensure proper and enhanced data refining of query result ...
Read More Read More
Published by
SBH
Article Preview
Objective

The article demonstrates the use of WHERE clause and various operators to restrict the use of SELECT result set.

1. Introduction of WHERE clause

The SELECT query result can be restricted or filtered by passing the result set through logical conditions. ...
Read More Read More

Page 8 of 17 FirstFirst 2 3 4 5 6 7 8 9 10 11 12 13 14