SlideShare uma empresa Scribd logo
1 de 141
Baixar para ler offline
Oracle SQL in 7 Days
[Quick Reference for oracle SQL developers]

Version: 1.0

[28th November 2013]
Suresh Reddy Nallapareddy
Suresh.n2008@gmail.com

Nice Quote:

Learning is not important
What you learn and how you learn
Is important…
By Virendra Pratap
Nallapareddy Suresh Reddy

Oracle SQL Training Program Structure
--------------------------------------------- Day 1 --------------------------------------------1.
2.
3.

Introduction
Data types
DRL, DDL, DML, TCL and DCL commands

-------------------------------------------- Day 2 ----------------------------------------------4.
5.
6.
7.

Select & where clause
Aliases, Literals and Concatenation
Arithmetic, Comparison, Logical and SQL operators
Order by clause

--------------------------------------------- Day 3 ---------------------------------------------8.
9.

SQL functions (Character, Numeric and Date)
Conversion Functions (To_char, To_date and To_number)

--------------------------------------------- Day 4 ---------------------------------------------10.
11.

Group by , Grouping Functions and having clause
Integrity Constraints

-------------------------------------------- Day 5 ----------------------------------------------12.
13.
14.

Joins
Pseudo Columns
Set Operators

-------------------------------------------- Day 6 ----------------------------------------------15.
16.
17.

Sub Queries
Views
Indexes

-------------------------------------------- Day 7 ----------------------------------------------18.
19.
20.

Sequences
Synonyms
OLAP Functions & (Others)

-------------------------------------------- END -----------------------------------------------

Suresh.n2008@gmail.com

Page 1
Nallapareddy Suresh Reddy

Introduction
What is a Database?
The answer to this question is very simple. Database is the place where we can store our
data. The Oracle database is designed in such a way that any data we want to store in it, we can
store it in the form of tables. A table will contain Rows (In database terminology we will call
them as Records) and Columns (In database terminology we will call them as Attributes).
Why we need a Database?
Let me explain this with small example. Let us take the example of GMAIL, through
which we can send mails; we can chat with friends.... by logging in with our credentials
(Username and Password).
Here in Gmail our Usernames should be unique. While registering it will ask to enter
unique user name by checking the availability and each username will be associated with a
password. So, where this information will be stored? This information will be stored in the tables
of a database server which is located at the company. So, each time when you are trying to login
then it will validate the information with the data stored in the database and it will do appropriate
action.
Similarly in real life almost in the entire places database becomes a mandatory thing as
we can store data into it from any place and we can access that data from any place. Take
Banking, Railways ticket reservations, Bus ticket reservations, Cinema ticket reservations and
information, Hospitals..... Any place you take... they need a database to maintain the information.
So, now we understand the importance of the database in our real life. Now, here comes
most importance question. What is SQL?
What is SQL?
SQL means Structured Query Language. The statements which we are going to write in
this language will be called as Queries. Each query will be having its own structure. That is why
this language is called as Structured Query Language. Ok fine. Now we know what SQL is. The
next question is why we need SQL?
Why we need SQL?
So as discussed in the above sections, we will store the information in the database in
the form of tables. How will you store? We cannot take it by hand and we cannot put it in the
database right... Similarly how will you see the information? How will you modify the

Suresh.n2008@gmail.com

Page 2
Nallapareddy Suresh Reddy

information? To do all these things we need a mode of communication with the database. We
need to interact with the database by some medium. Here comes the usage of a Database
language by which we can perform all the above mentioned tasks on the database. One such type
of Language is SQL.
So, SQL is a communication language which will be used to interact with the
database. So, as part of SQL we are going to learn about how to perform all the above mentioned
tasks.

Suresh.n2008@gmail.com

Page 3
Nallapareddy Suresh Reddy

Data Types
1. Char
2. Varchar2
3. Date
4. Number
5. Long
6. Raw
7. Long Raw
8. LOB
9. CLOB
10. BLOB
11. BFILE
Note:

 The first 4 data types are very important and regularly used ones.
Char Data type:





The Char data type is used when fixed length character string is required.
It can store alphanumeric values.
The maximum size of char data type is 2000 bytes.
Data should enter in single quotes.

Note:

 If the user enters a value shorter than the specified length then the database adds blankpads to the fixed length.
 In case, if the user enters a value larger than the specified length then the database would
return an error.
Varchar2 Data type:







The varchar2 data type supports a variable length character string.
It also stores alphanumeric values.
The maximum size of char data type is 4000 bytes.
Data should enter in single quotes.
It occupies only that space for which the data is supplied.
Using varchar2 saves disk space when compared to char.

Note:

 In case, if the user enters a value larger than the specified length then the database would
return an error.

Suresh.n2008@gmail.com

Page 4
Nallapareddy Suresh Reddy

Number Data type:
 It stores zero, positive and negative fixed and floating point numbers.
 The general declaration is
Number (P, S)
P  It specifies the precision, i.e., the total number of digits (1 to 38).
S  It specifies the scale, i.e., the number of digits to the right of the decimal
point, can range from -84 to 127.
Date Data type:
 It is used to store DATE and TIME information.
 It allocates fixed length of 7 bytes each for century, year, month, day, hour, minute and
second.
 The default date format is “dd-mon-yy” or “dd-mon-yyyy”.
 The date range provided by oracle is January 1, 4712 BC to December 31, 4712 AD.
Timestamp Data type:

 It is an extension of the DATE data type.
 It stores the data in the form of century, year, month, date, hour, minute and second.
Long data type:





This data type stores variable length character strings.
It is used to store very lengthy text strings.
The maximum size is 2 GB.
The length of long values may be limited by the memory available on the computer.

Note:









A single table can contain only one long column.
Objects types cannot be created on long column Attribute.
Long columns cannot appear in where clauses or in Integrity constraints.
Indexes cannot be created on long columns.
Long can be Returned through a function, but not through a stored procedure.
Stored procedures cannot accept long data as arguments.
It can be declared in a Pl/Sql unit but cannot be referenced in SQL.

Raw data type:
 It is used to store binary data like photos, signatures, thumb impressions etc.
 The maximum size is 2000 bytes.

Suresh.n2008@gmail.com

Page 5
Nallapareddy Suresh Reddy

 While using this data type the size should be mentioned because by default it does not
specify any size.
 Only storage and retrieval of data are possible, manipulations of data cannot be done.
 This data type can be indexed.
Long Raw data type:
 It is also used to store binary data.
 The maximum size is 2 GB.
 This data type cannot be indexed.
Large Object (LOB) data types:





The built in LOB data types are: BLOB, CLOB and BFILE.
BLOB and CLOB stores data internally.
The BFILE is LOB which stores the data externally.
The LOB data type can store large and unstructured data like text, image, audio and
video.
 The Maximum storage size is up to 4 GB.
 BLOB stores unstructured binary large objects.
 CLOB stores single byte and multi byte character data.

Suresh.n2008@gmail.com

Page 6
Nallapareddy Suresh Reddy

DRL, DDL, DML, TCL and DCL commands
DRL (Data Retrieval Language):
 Select
DDL (Data Definition Language):
 Create
 Alter
 Drop
 Truncate
 Rename
DML (Data Manipulation Language):
 Insert
 Delete
 Update
 Merge
TCL (Transaction Control Language):
 Commit
 Rollback
 Savepoint
DCL (Data Control Language):
 Grant
 Revoke
DRL (Data Retrieval Language):
This will be used for the retrieval of the data from the database. In order to see the data
present in the database, we will use DRL statement. We have only one DRLstatement.
SELECT is the only one DRL statement in SQL.
SELECT:

Select statement is used to see the data present in the database. Syntax for writing this
statement is,
SELECT columns_list FROM table_name;

Suresh.n2008@gmail.com

Page 7
Nallapareddy Suresh Reddy

If we want to see the data present in all the columns of the table, then we can use
following syntax,
SELECT * FROM table_name;
Ex:

To check data present in all the columns of Emp table,
SELECT * FROM Emp;
To check data present in specific columns of the table, we will use first syntax.
Ex:

SELECT empno,ename FROM Emp;
In this I am just checking data present in empno and ename columns.
DDL (Data Definition Language):
These statements will work on structure of the tables. Structure of the table means, name
of the table, columns and their corresponding data types and constraints on the table etc. These
statements will not affect the data present in the tables. Data definition involves, creating the new
tables, modifying the existing tables like changing names of tables or columns, adding new
columns to the table, removing existing columns from the table, removing tables from the
database..... Etc.
DDL statements will carry implicit commit. So, these statements will not require any
transaction control. Implicit commit means, whatever DDL statement issued against the database
will be automatically committed. There is no rollback for the DDL statements. So, while
working with the DDL statements we need to be very careful.
NOTE:

One important point to remember here is, the implicit commit which is carried by DDL
statements will be applicable to total transactions happened in that session till that point. It means
that if we have any unhandled (using TCL) DML statements issued against the database before
issuing the DDL statements, they will also be committed to the database due to the implicit
commit carried by DDL. So, we need to take care of this. If any pending DML transactions are
there then first we have to handle them using commit or rollback before issuing any DDL
operation in that session.

Suresh.n2008@gmail.com

Page 8
Nallapareddy Suresh Reddy

CREATE:

Create will be used to create new tables in the Database. We can also say that Create will
be used to create new objects in the database. Objects mean Table, Views, Indexes, and
Synonyms..... Etc. We can create any of these objects using Create statement. But now I will
discuss only about tables.
Rules to create a Table:

 The user should have permission on create table command.
 The Table name should begin with a letter and can be 1 – 30 characters long.
 The table names can contain combination of
 A – Z (OR) a – z (OR) 0 – 9 (OR) _, $, #
 Names cannot be duplicated for another object name in the same oracle server.
 Table names are not case sensitive in oracle.
 Two column names in a table should not be same name.
The syntax for creating new table using CREATE statement is,
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
----------------------------columnNdatatype
);
so, using this syntax we can create new tables in the database. We can use any of the data
types which we have discussed to create columns of the database depending on type of data we
want to store in those columns.
CREATE TABLE Employee(
empno number (10),
ename varchar2 (20),
hiredate
date,
sal
number (10, 2),
deptno number (10)
);

Suresh.n2008@gmail.com

Page 9
Nallapareddy Suresh Reddy

This statement will create Employee table with columns empno (numeric type), ename (character
type), hiredate (date type), sal (numeric) and deptno (numeric).
If we want to see the structure of the tables without seeing the data present in the tables,
we can use the describe command. Syntax for that is,
DESC table_name;
Ex: DESC Employee;

This statement will show us the structure of Employee table.
ALTER:

ALTER command will be used to modify the structure of the existing tables. Using ALTER
we can do following things.





Add new column to the table
Remove existing column from the table
Modify columns data type size of the table
Change the name of a column of the table

The syntax for adding new column to the table is,
ALTER TABLE tab_name ADD col_name datatype;
Ex:

This statement will add new column gender of character type to Employee table.
ALTER TABLE Employee ADD gender CHAR(1);
The syntax for removing existing column from the table is,
ALTER TABLE tab_name DROP COLUMN col_name;
Ex:

This statement will remove gender column from the Employee table.
ALTER TABLE Employee DROP COLUMN gender;
The syntax for modifying size of character column from the table is,
ALTER TABLE tab_name MODIFY col_name datatype with new size;

Suresh.n2008@gmail.com

Page 10
Nallapareddy Suresh Reddy

Ex:

This statement will be used to change the size of ename column to 30.
ALTER TABLE Employee MODIFY ename VARCHAR2(30);
This statement can be used to change the size of any column to >= max(size) of the data
already present in that column. For example if the max(size) of data already present in the
column is 6 , then we can modify its size to >=6.
The syntax for changing the name of the column is,
ALTER TABLE tab_name RENAME COLUMN old_name TO new_name;
Ex:

This will change the name of sal column of Employee to salary.
ALTER TABLE Employee RENAME COLUMN sal TO salary;
So, these are the some basic things which we can do with ALTER statement.
DML (Data Manipulation Language):
DML means Data Manipulation Language. These statements will be used to modify the data
present in the tables. These statements will work on the data. There is no relation for these
statements with the structure of the tables. Data manipulation involves Inserting data into tables,
modifying the data present in the tables and removing the data from the tables. DML statements
require Transaction control.
Any change which is made to the database by a DML statement will be called as a
transaction. So, any change made by DML statement needs to be controlled by TCL statements
(Transaction Control). I will discuss about these TCL statements in my future posts. In order to
handle the changes done to the database by DML statements, we need transaction control.
INSERT:

Insert will be used to insert new data into the tables. In other words we can say Insert will
be used to create new rows in the tables. We cannot affect the existing rows from the table using
Insert statement.
We have two different syntaxes for writing the Insert statement. They are,
INSERT INTO tab_name values (val1, val2, … , val n);
INSERT INTO tab_name (col1, col2, col3, .....,coln) VALUES (val1, val2, ..... , valn);

Suresh.n2008@gmail.com

Page 11
Nallapareddy Suresh Reddy

First syntax is the general syntax of insert statement. In this type of syntax we must pass
values to all the columns of the table, and that also in the order of presence of these columns in
the table. Otherwise, we will get error.
For Example, Let us say we have a table called Employee in the database. The columns
present in this table are Empno, Ename, hiredate, Sal and Deptno. Now If I want to insert new
row into this table using first syntax then,
INSERT INTO Employee VALUES ( 1111, 'RAM', ’12-jan-2010’,5000, 20);
Now, I will discuss about the 2nd syntax. In this second syntax we can enter values into
the columns of the table while creating new rows in our own desired order irrespective of the
order of presence of these columns in the table. This we can achieve by mentioning the desired
order between tab_name and VALUES as shown in the syntax. In this syntax we can also give
values to specific columns of the table only. This means, if we have 5 columns in the table and
while creating the new row if you want to give values only to 3 columns we can do that by using
second syntax.
Ex:

INSERT INTO Emp ( Empno, Ename, Sal) Values (2222, 'RAJ', 2000);
INSERT INTO Emp (Empno, Sal, Ename) Values (3333, 1500, 'KRISH');
We have one more syntax for creating new rows in the table using Insert statement. That is
shown below.
INSERT INTO Emp VALUES ( &val1, &val2, ..... &valn).

In this syntax, if we run the above statement then system will ask us to enter the values one by
one. After entering the entire values row will be created in the table. After that if we hit '/' at the
command prompt then system will ask us to enter the values again to create another row. Like
this we can create n number of rows.
DELETE:

Delete will be used to remove the data from the tables. Using Delete we can remove
single row or multiple rows from the table. We have two syntaxes for Delete statement.
DELETE FROM tab_name;
DELETE FROM tab_name WHERE condition;

Suresh.n2008@gmail.com

Page 12
Nallapareddy Suresh Reddy

If we use first syntax then all the rows from the table will be removed. If we want to remove
specific rows only then we have to use the second syntax.
Ex:

If we execute this statement then all the rows from the EMP table will be removed.
DELETE FROM Employee;
If we execute this statement then the row belongs to employee with Empno 1111 will be
removed. So, using this syntax we can remove specific rows from the table by specifying the
Where clause.
DELETE FROM Employee WHERE empno = 1111;
Using Delete we can remove entire row from the table only. We cannot remove values from
specific columns of the table using Delete statement.
UPDATE:

Update will be used to modify the data present in the tables. Using single update statement
we can modify the data present in the single column or multiple columns of the table. Similarly,
using single update we can modify data present in single row or multiple rows.
Different syntax's for Update statement are,
UPDATE tab_name SET col_name = val ;
UPDATE tab_name SET col_name = val WHERE condition;
UPDATE tab_name SET col1 = val1, col2 = val2 , .... ;
UPDATE tab_name SET col1 = val1, col2 = val2,... WHERE condition;
If we use the first syntax, then in all the rows of the table the column specified
(col_name) will be updated to the provided value (val).
If we use second syntax, then for the rows which will satisfy the condition specified in
the WHERE clause column specified (col_name) will be updated to the provided value
(val).Third and Fourth syntax's are similar to first and second syntax's only , only difference here
is instead of updating single column we are updating multiple columns of the table.

Suresh.n2008@gmail.com

Page 13
Nallapareddy Suresh Reddy

Ex:

UPDATE Employee SET deptno = 20; (This will update deptno to 20 in all the rows of
Emp table).
UPDATE Employee SET sal = 5500 WHERE ename = 'RAM'; (This will update sal of
Ram to 5500).
UPDATE Employee SET sal = 6000, deptno = 30 ;
UPDATE Employee SET sal = 7000, deptno = 40 WHERE ename = 'RAM';
As I discussed before, if we want to insert value to a particular column of existing row we
cannot use Insert statement. We have to use Update statement to update the column to that
particular value. Similarly if we want to remove values from specific column then we cannot do
it using Delete statement. We have to update that column or columns to null.
Ex:

UPDATE Employee SET deptno = null WHERE empno = 3333;
MERGE:

Merge statement will be used to combine data from two similar tables into single table. In
order to do merge operation two tables containing similar columns are required. Generally we
will use merge statement to insert data from one table into other similar table. While doing this if
same row is present in both the tables then we cannot perform insert operation due to the
constraints of the table. This is where the merge operation is very useful.
Merge is the combination of both Insert and Update operations. So, while merging data
from one table into another table, if we have same row in both the tables then we will perform
UPDATE operation. If different row is present, then we will perform INSERT operation. This is
the concept involved with MERGE statement.
Syntax for writing the merge statement is,
MERGE INTO tab1 USING tab2 ON condition
WHEN MATCHED THEN
UPDATE SET tab1.Col = tab2.Col
WHEN NOT MATCHED THEN
INSERT VALUES (tab2.col1, tab2.col2, ........ );
Let me explain this merge statement with an example. Let us say we have two similar tables Emp
and Emp1. I want to merge data from Emp1 to Emp table. Then statement used for this is,
MERGE INTO Emp USING Emp1 ON emp.empno = emp1.empno
WHEN MATCHED THEN

Suresh.n2008@gmail.com

Page 14
Nallapareddy Suresh Reddy

UPDATE SET emp.sal = emp1.sal
WHEN NOT MATCHED THEN
INSERT VALUES ( emp1.empno, emp1.ename, emp1.sal, emp1.deptno);
So, here I am merging data from Emp1 table into Emp table. ON will be used to check
the common thing between the two tables to decide when to do update and when to do insert.
Here using Empno column I am deciding this. Generally we will use primary key columns where
unique values will be present to compare in ON condition.
Now if the condition is satisfied then, WHEN MATCHED condition will be satisfied and
the UPDATE statement will be performed. Here we are taking sal from emp1 table and updating
it to emp table. If condition is not satisfied then WHEN NOT MATCHED condition will be
satisfied and new row will be inserted into Emp table from Emp1 table.
So, this is how Merge statement will be worked. So, in case of Merge operation if similar
rows are there we will perform Update operation and if different row is there then we will
perform Insert operation.
Note: Again we are seeing remaining DDL statements.
TRUNCATE:

TRUNCATE will be used to remove the data from the tables. Truncate will be used to
remove all the data present in the tables. We cannot remove specific rows of a table using
TRUNCATE command. It means that we cannot write WHERE clause with this statement.
So, using truncate we can remove entire rows from the table only. The syntax for writing
TRUNCATE is,
TRUNCATE TABLE tab_name;
Ex:

This will remove all the rows of Emp table.
TRUNCATE TABLE Employee;
DROP:

DROP will be used to remove tables from the database. This will remove entire table from the
database along with data present in it. Syntax for DROP statement is,
DROP TABLE tab_name;

Suresh.n2008@gmail.com

Page 15
Nallapareddy Suresh Reddy

Ex:

This will remove Emp table from the database.
DROP TABLE Employee;
RENAME:

RENAME will be used to change the names of database objects like tables, views etc. Using this
command we can change names of database objects only. We cannot change names of columns
of the table.
Syntax for this statement is,
RENAME old_name TO new_name;
Ex:

RENAME Employee TO Employeedata;
This statement will change the name of Employee table to Employeedata.
TCL (Transaction Control Language):
TCL means Transaction Control Language. These statements are used to control the
transactions made by the DML statements to the database. Any change which is made to the
database by a DML statement will be called as a transaction. We need to control these
transactions made by DML statements.
Whatever change made to the database by a DML statement will not reside permanently
in the database, unless auto commit option enabled in the session. Those changes will reside in
temporary memory. So, we need to handle these changes.
We have 3 TCL statements available.
COMMIT:

Commit will be used to make the changes made by DML statements permanent to the
database. After performing DML operations, if we issue commit then those changes will be made
permanent to the database. If Auto commit option for session is enabled, then this is not required
as commit takes place automatically.

Suresh.n2008@gmail.com

Page 16
Nallapareddy Suresh Reddy

Note: DDL statements will carry implicit commit. So, if we issue DDL statement against the

database, after doing some DML operations, then due to implicit commit of DDL, previous DML
statements also will be committed as commit of DDL applies for the session till that point.
COMMIT;

ROLLBACK:

Rollback will be used to discard the changes made by DML statements to the database. If
auto commit option enabled in the session, then there is no use with Rollback statements as
transactions will be committed automatically.
So, if we give Rollback then any pending changes to the database which are made by
DML statements will be discarded.
ROLLBACK;
SAVEPOINT:

To Rollback the changes to a certain transaction point, we will use SAVEPOINT.
The SAVEPOINT statement names and marks the current point in the processing of a
transaction. With the ROLLBACK TO statement, save points undo parts of a transaction instead
of the whole transaction.
SAVEPOINT my_savepoint;
ROLLBACK TO my_savepoint;

DCL (Data Control Language):
DCL means Data Control Language. These statements are used for controlling the access
to database objects for users. Generally these statements will be used by DBA people to control
the access of users to the database.
GRANT:

Grant will be used for giving permissions on the database to users. Using this we can give
any type of permissions to the users on the database.

Suresh.n2008@gmail.com

Page 17
Nallapareddy Suresh Reddy

For ex if we want to give Select permission on all the database tables to a user,
GRANT SELECT ANY TABLE TO user_name;
If we want to give select permission on specific table then
GRANT SELECT ON tab_name TO user_name;

If we want to give Create table permission then,
GRANT CREATE TABLE TO user_name;
REVOKE:

Revoke will be used to remove the permissions which are granted previously to the users on the
database. If we want to remove permissions given in the above statements, then we can use
following statements.
REVOKE SELECT ANY TABLE FROM user_name;
REVOKE SELECT ON tab_name FROM user_name;
REVOKE CREATE TABLE FROM user_name;

Suresh.n2008@gmail.com

Page 18
Nallapareddy Suresh Reddy

Select, where clause, Aliases, Literals,
Concatenation, Operators and Order by
Select Statement:
The SELECT statement is used to retrieve data from one or more:






TABLES
OBJECT TABLES
VIEWS
OBJECT VIEWS
MATERIALIZED VIEWS

Prerequisites:

 The user must have the select privileges on the specified object.
 The select ANY TABLE allows selecting the data from any recognized object.
Basic SELECT Syntax:

SELECT [DISTINCT] [*] {column1 [Alias]…} FROM TABLE_NAME;
SELECT

 Specifies a list of columns.

DISTINCT

 Suppresses Duplicates.

*

 Projection Operator to select all columns from the table.

COLUMN

 Selects the named column.

Alias

 Gives selected columns alternate column name.

FROM TABLE_NAME  Specifies the table containing the columns.
Retrieving Data from all columns of a Table:

 For this purpose the projection operator ‘*’ is used.
 The operator projects data from all the columns existing in the table with all records.
Ex:

SELECT * FROM EMP;

Suresh.n2008@gmail.com

Page 19
Nallapareddy Suresh Reddy

Retrieving Data from specific columns:
Ex:

SELECT Empno, Ename, Sal From Emp;
SELECT Deptno, Dname, Loc from dept;
SELECT Hisal, Lowsal, Grade from Salgrade;
Note:

 The column names need not be in the same order as table.
 The column should be separated using comma.
 The casing of column names is not important.
Column Heading Defaults:

 The default justification of the data after it is retrieved from the table is …
o LEFT Date and Character data
o RIGHT Numeric data.
 The default display of the data is always UPPER casing.
 The character and date column headings can be truncated, but number columns cannot be
truncated.
Suppressing Duplicate Rows in Output:

 Until it is instructed Sql * puls displays the result of a query without eliminating
duplicate rows.
 To eliminate the duplicate rows in the result, the DISTINCT keyword is used.
 Multiple columns can be described after the distinct qualifier.
 The DISTINCT qualifier affects all the selected columns, and represents a DISTINCT
combination of the columns.
Ex:

SELECT DISTINCT Deptno From Emp;
SELECT DISTINCT MGR From Emp;
SELECT DISTINCT Job, Deptno From Emp;
SELECT DISTINCT Deptno, Job From Emp;

Suresh.n2008@gmail.com

Page 20
Nallapareddy Suresh Reddy

Where Clause:
 Used to filtering of records.
 The number of rows returned by a query can be limited using the where clause.
 A where clause contains a condition that must be met and should directly follow the from
clause.
Syntax:

SELECT [DISTINCT] [*] {column1 [Alias]…} FROM TABLE_NAME
[WHERE Condition(s)];
 The WHERE clause can compare
o Values in columns
o Literal values
o Arithmetic Expressions
o Functions
 The components of Where clause are
o Column name
o Comparison Operator
o Column Name (or) Constant (or) List of Values
 The Character strings and dates should be enclosed in single quotation marks.
 Character values are case sensitive and date values are format sensitive (DD-MON-YY).
Ex:

SELECT Ename, Sal, Job From Emp where job =’MANAGER’;
SELECT Ename, Hiredate, Deptno, Sal From Emp where Deptno=10;
SELECT Empno, Ename, Sal, Deptno From Emp where hiredate = ’01-Jan-95’;

Suresh.n2008@gmail.com

Page 21
Nallapareddy Suresh Reddy

Working With Aliases:
 An Alias is an alternate name given for any oracle database object.
 Aliases in oracle are of two types.
Column Alias:

 Column Alias renames a column heading in a query.
 The column Alias is specified in the SELECT list by declaring the alias after the column
name by using the space separator.
 Alias heading appears in UPPER casing by default.
 The alias should be declared in double quotes if it is against the specifications of naming
conversions of oracle.
 The AS keyword can be used between the column name and Alias
 An Alias effectively renames the SELECT list item for the duration of that query only.
 An alias cannot be used, anywhere in the select list for operational purpose.
Table Alias:

 Table Alias renames the original name of the table in a SQL statement.
 Table Aliases are very important when working with self joins.
 The table Alias is applied for the current SQL statement only.
 It is an important source when implementing the standards of merge statements,
correlated queries and analytic functions.
Ex:

Select Empno Numbers, Ename name, Sal “Basic salary”, Job Designation From Emp;
Select Deptno as “Department ID”, Dname as “Department Name”, Loc as Place From
Dept;
Select Hisal as “Maximum Range”, Losal as “Minimum Range”, Grade From Salgrade;

Suresh.n2008@gmail.com

Page 22
Nallapareddy Suresh Reddy

Literals:
 A Literal and a Constant value are synonyms to one another and refer to a fixed data
value.
 The types of literals recognized by Oracle are…
o Text literals
o Integer literals
o Number literals
o Interval literals
Text literals:

 It specifies a text or character literal.
 It is used to specify values whenever ‘TEXT’ or CHAR appear in
o Expressions
o Conditions
o SQL Functions
o SQL Statements
 Text literal should be enclosed in single quotes.
 They have properties of both char and varchar2 data types.
 A text literal can have a maximum length of 4000 bytes.
Using Literal Character Strings:

 A literal that is declared in a select list can be a character, a number or a Date.
 A literal is not a column name or a column Alias.
 A literal is printed for each row that is retrieved by the select statement.
 Literal strings of free-form text can be included in the query as per the requirement.
 Date and character literals must be enclosed within the single quotation marks.
 Literals increase the readability of the output.

Suresh.n2008@gmail.com

Page 23
Nallapareddy Suresh Reddy

 A literal is printed for each row that is retrieved by the select statement.
 Date and character literals must be enclosed within the single quotation marks.

Ex:

Select Ename||’ : ’|| ’month salary = ’|| Sal as salaries From Emp;
Select ’The Designation of ’|| Ename ||’ is ’||Job as designation From Emp;
Select ’The Annual salary of’ ||Ename|| ’ is ’ ||Sal * 12 as Annual_salray From Emp;
Concatenation:
 The concatenation operator links columns to other columns, Arithmetic expressions, or
constant values.
 Columns on either side of the operator are combined to make a single output column.
 The resultant column is treated as a character expression.
 The concatenation operator is represented in oracle by double pipe symbol (||).
Ex:

Select Empno||’ ’||Ename||’ Designation is ’||job “employee information” From Emp;
Operators:
Arithmetic Operators:

 The Arithmetic operators can be used to create expressions on numbers and date data
type columns.
 The Arithmetic operators supported are:
o Addition



+

o Subtraction



-

o Multiply



*

o Divide



/

 The Arithmetic operators can be used in any clause of a sql statement, except the from
clause.

Suresh.n2008@gmail.com

Page 24
Nallapareddy Suresh Reddy

 SQL * plus ignores blank spaces before and after the arithmetic operator.

Ex:

Select Empno, Ename, Sal, Sal + 500 From Emp;
Select Empno, Ename, Sal, Sal – 1000 From Emp;
Operator Precedence:

 Multiplication and Division take priority over Addition and Subtraction (*, /, +, -).
 Operators of the same priority are evaluated from left to right.
 To prioritize evaluation and to increase clarity parenthesis can be implemented.
Ex:

Select Empno, Ename, Sal, (12 * Sal) + 100 From Emp;
Select Empno, Ename, Sal, 12 * (Sal + 500) From Emp;
Comparison Operators:

 Equality Operator



=

 Not Equality Operator



< >, !=, ^=

 Greater Than Operator



>

 Less Than Operator



<

 Greater Than Equal to Operator



>=

 Less Than Equal to Operator



<=

Ex:

Select Ename, Sal, Job From Emp Where Job = ’MANAGER’;
Select Ename, Hiredate, Deptno, Sal From Emp where Deptno < > 10;
Select Empno, Ename, Sal From Emp where Sal >= 3000;
Select Ename name, Sal basic, Sal * 12 Annual From Emp where sal * 12 > 60000;

Suresh.n2008@gmail.com

Page 25
Nallapareddy Suresh Reddy

Logical Operators:

 The Logical operators combine the results of two component conditions to produce a
single result.
 The Logical operators are:
o Logical conjunction operator  AND
o Logical disjunction operator  OR
o Logical negation operator  NOT
AND Operator:

 It Returns TRUE if both or all component conditions are TRUE.
 It Returns FALSE if either is FALSE, else returns unknown.
Truth Table:

AND

TRUE FALSE NULL

TRUE

T

F

NULL

FALSE

F

F

F

NULL

NULL

F

NULL

Ex:

Select Ename, Sal, Deptno, Job From Emp Where Deptno = 20 AND Job =
’MANAGER’;
Select Empno, Ename, Job, Sal From Emp Where sal >= 1100 AND Job = ’CLERK’;
Select Empno, Ename, Job, Sal From Emp Where Deptno = 10 AND Job = ’CLERK’;
Select Ename, Sal, Job From Emp Where Sal >= 1500 AND Sal > 5000;
Select Ename, Sal, Job From Emp Where (Sal >= 1500 AND Sal <=5000) AND Job =
’MANAGER’;
OR Operator:

 It Returns TRUE if either of the component condition is TRUE.
 It Returns FALSE if both are FALSE, else returns unknown.

Suresh.n2008@gmail.com

Page 26
Nallapareddy Suresh Reddy

Truth Table:

OR

TRUE FALSE NULL

TRUE

T

T

T

FALSE

T

F

NULL

NULL

T

NULL

NULL

Ex:

Select Ename, Sal, Deptno, Job From Emp where Deptno = 20 OR Job = ’MANAGER’;
Select Empno, Ename, Job, Sal From Emp where Sal >= 1100 OR Job =’CLERK’;
Select Empno, Ename, Job, Sal From Emp where Deptno = 10 OR Job =’MANAGER’;
Select Ename, Sal, Job From Emp where Sal >= 1500 OR Sal >=5000;
Select Ename, Sal, Job, Deptno From Emp Where Deptno = 10 OR Deptno=20;
Select Ename, Sal, Job From Emp Where Job = ’CLERK’ OR Job = ’MANAGER’;
Select Ename, Sal, Job From Emp where (sal <= 2500 OR Sal >= 5000) OR Job =
’MANAGER’;
NOT Operator:

 It Returns TRUE if the following condition is FALSE.
 It Returns FALSE if the following condition is TRUE.
 If the condition is unknown, it returns unknown.
Truth Table:

NOT TRUE FALSE NULL
NOT

Suresh.n2008@gmail.com

F

T

NULL

Page 27
Nallapareddy Suresh Reddy

Ex:

Select Ename, Sal, Job From Emp where NOT Job = ’MANAGER’;
Select Ename, Sal, Job From Emp where NOT Sal > 5000;
Select Ename, Sal, Job From Emp where NOT Sal < 5000;
Select Ename, Sal, Hiredate From Emp where NOT Hiredate = ’20-FEB-81’;
Select Ename, Job, Sal, Deptno From Emp where NOT Job = ’SALESMAN’ AND
Deptno = 30;
Combination of AND and OR Opertors:

Select Empno, Ename, Job, Sal From Emp where (sal > 1100 OR Job = ’CLERK’) AND
Deptno = 20;
Select Empno, Ename, Job, Sal From Emp where (Deptno = 10 AND Job =
’MANAGER’) OR Sal >= 3000;
Select Empno, Ename, Job, Sal From Emp where (Deptno = 10 AND Job =
’MANAGER’) OR (Deptno = 20 AND Sal >= 3000);
Some Things to Note:

Select Ename, Sal, Job From Emp where Job > ’MANAGER’;
Select Ename, Sal, Job From Emp where Job < ’MANAGER’;
Select Ename, Sal, Hiredate From Emp where Hiredate > ’21-FEB-1981’;
Select Ename, Sal, Hiredate From Emp where Hiredate < ’21-FEB-1981’;
Select Ename, Sal, Hiredate From Emp where Hiredate <> ’21-FEB-1981’;
Select Ename, Sal, Hiredate From Emp where Job <>’CLERK’;
Select Ename, Sal, Job From Emp where NOT Job > ’MANAGER’;
Select Ename, Sal, Hiredate From Emp where NOT Hiredate = ’17-DEC-1980’;
Select Ename, Sal, Hiredate From Emp where NOT Hiredate > ’17-DEC-1980’;
Select Ename, Sal, Hiredate From Emp where NOT Hiredate > ’17-DECEMBER-1980’;

Suresh.n2008@gmail.com

Page 28
Nallapareddy Suresh Reddy

Rules of Operator Precedence:

 The Default precedence order is:
o All comparison operators
o NOT operator
o AND operator
o OR operator
 The precedence can be controlled using parenthesis.
Ex:

Select Ename, Deptno, Job, Sal From Emp where Deptno = 10 OR Deptno = 20 AND
Job =’SALESMAN’ AND Sal > 2500 OR Sal < 1500;
Select Ename, Deptno, Job, Sal From Emp where Deptno = 10 OR (Deptno = 20 AND
Job = ’SALESMAN’) AND (Sal > 2500 OR Sal < 1500);
SQL Operators:
Between … And … Operator:

 This operator is used to display rows based on a range of values.
 The declared range is inclusive.
 The lower limit should be declared first.
 The negation of this operator is NOT BETWEEN … AND …
Ex:

Select Ename, Sal, Job From Emp where Sal BETWEEN 1000 AND 1500;
Select Ename, Sal, Job From Emp where Sal Not between 1000 and 1500;
Select Ename, Sal, Job From Emp where Job Between ’MANAGER’ And
’SALESMAN’;
Select Ename, Sal, Job From Emp where Job NOT between ’MANAGER’ and
’SALESMAN’;
Select Ename, Sal, Job, Hiredate From Emp where Hiredate between ’17-FEB-1981’ and
’20-JUN-1983’;

Suresh.n2008@gmail.com

Page 29
Nallapareddy Suresh Reddy

Select Ename, Sal, Job, Hiredate From Emp where Hiredate NOT between ’17-FEB1981’ and ’20-JUN-1983’;
IN Operator:

 This operator is used to test for values in a specified list.
 The operator can be used upon any data type.
 The negation of the operator is NOT IN.
Ex:

Select Ename, Sal, Job From Emp where Ename IN (’FORD’,’ALLEN’);
Select Ename, Sal, Job From Emp where Ename NOT IN (’FORD’,’ALLEN’);
Select Ename, Sal, Job From Emp where Ename IN(10,30);
Select Ename, Sal, Job, Hiredate From Emp where hiredate IN (’20-FEB-1981’,’09-JUN1981’);
IS NULL Operator:

 The Operator tests for null values.
 It is the only operator that can be used to test for NULL’s.
 The Negation is IS NOT NULL.
Ex:

Select Ename, Deptno, Comm From Emp where Comm IS NULL;
Select Ename, Deptno, Job, Mgr From Emp where mgr is null;
Select Ename, Deptno, comm From Emp where comm Is not null;
Select Ename, Deptno, comm, mgr From Emp where mgr is not null;
Like Operator:

 The Like operator is used to search for a matching character patterns.
 The character pattern matching operation is referred as a wild card search.
 The available wild cards in oracle are:
o %  used to represent any sequences of zero or more characters.

Suresh.n2008@gmail.com

Page 30
Nallapareddy Suresh Reddy

o _  represents any single character, only at that position.
 The wild card symbols can be used in any combination with literal characters.
 For finding exact match for ‘%’ and ‘_’ the escape option has to be used along with ‘’
symbol.
Ex:

Select Ename, Job From Emp where Ename LIKE ’S%’;
Select Ename,Job From Emp where Ename not like ’S%’;
Select Ename,Job From Emp where ename like ’%S%’;
Select Ename, Job From Emp where ename like ’_A%’;
Select Ename, Job From Emp where ename not like ’_A%’;
Select ename, job from emp where ename = ’SM%’; (not valid)
Select ename, job from emp where ’SM%’ like Ename; (not valid)
Select Ename, Hiredate From emp where hiredate like ’%-FEB-81’;
Select Ename, Hiredate From emp where hiredate like ’03-%-81’;
Select * from dept where Dname like ‘%_%’ ESCAPE ‘’;
Ordering Information:

 The order of rows returned in the result of a query undefined.
 The order by clause can be used to sort the rows in the required order.
 The order by clause should be the last clause in the order of all clauses in the select
statement.
 An expression or an alias can be specified to order by clauses for sorting.
 Default ordering of data is ascending
o Numbers

0-9

o Dates

 Earliest – Latest

o Strings

A–Z

Suresh.n2008@gmail.com

Page 31
Nallapareddy Suresh Reddy

o NULLS

 Last

Ex:

Select ename, job, deptno, hiredate from emp order by hiredate;
Select ename, job, deptno, hiredate from emp order by hiredate desc;
Select ename, job, sal from emp where job = ’MANAGER’ order by sal;
Select ename,job, sal from emp where sal >= 2500 order by job, ename desc;
Select empno, ename, sal, sal * 12 annsal from emp order by annsal;
Select empno, ename, sal from emp order by deptno, sal, hiredate;
Select empno, ename, sal from emp where sal >= 2000 order by hiredate, sal desc;

Suresh.n2008@gmail.com

Page 32
Nallapareddy Suresh Reddy

SQL Functions
SQL functions are built into oracle and are available for use in various appropriate SQL
statements.
 The SQL functions can be used to…
o Perform calculations on data
o Modify individual data items
o Manipulate output for groups of rows
o Format dates and numbers for display
o Convert column data types.
 SQL functions may accept arguments and always return a value, and can be nested.
 If an SQL function is called with a null argument, then null is returned.
SQL Function Types:

SQL identifies two types of functions
 Single row functions
 Multi row functions
Single row functions:

These functions return a single result for every row of a queried table or view.
 Character functions
 Number functions
 Date functions
 Conversion functions
Multi row functions:

These functions manipulate groups of rows and return one result per group of rows.
 Aggregate or group functions

Suresh.n2008@gmail.com

Page 33
Nallapareddy Suresh Reddy

Character Functions:
Lower Function:

 It converts alpha character values to lower case.
 The return value has the same data type as argument char type (Char or Varchar2)
Syntax: lower (column/expression)
Ex:

Select ’ORACLE CORPORATION’ string, LOWER (’ORACLE CORPORATION’)
lower from dual;
Select ename, lower(ename) lower from emp;
Select ename, job, sal from emp where lower(job) = ’manager’;
Upper Function:

 It converts the alpha character values to upper case.
 The return value has the same data type as the argument char.
Syntax: Upper (column/expression)
Ex:

Select ’oracle corporation’ string, upper (’oracle corporation’) upper from dual;
Select ename, lower(ename), upper(ename) from emp;
Select ename,job, sal from emp where job = upper (’manager’);
Select ename, job , sal from emp where job = upper(lower (’MANAGER’));
Select upper (’the’ ||ename||’ basic salary is Rupees ’||Sal) from emp where job IN
(’MANAGER’,upper (’clerk’)) order by sal DESC;
INITCAP Function:

 It converts the alpha character values into uppercase for the first letter of each word,
keeping all other letters in lower case.
 Words are delimited by white space or characters that are not alphanumeric.
Syntax: initcap (column/expression)

Suresh.n2008@gmail.com

Page 34
Nallapareddy Suresh Reddy

Ex:

Select ’oracle corporation’ string, initcap (’oracle corporation’) initcap from dual;
Select ename, upper(ename), lower(ename),initcap(ename) from emp;
CONCAT Function:

 It concatenates the first characters value to the second character value.
 It accepts only two parameters.
 It returns the character data type.
Syntax: Concat (column1/expr1 , column2/expr2)
Ex:

Select ’Oracle’ string1, ’corporation’ string2, concat (’oracle’,’corporation’) concat from
dual;
Select ename, job, concat(ename,job) concat from emp;
Select concat (’The Employee Name is ’, initcap(ename)) info from emp;
Select concat(concat(initcap(ename), ’ is a ’), job) job from emp;
Length Function:

 Returns the number of characters in a value
 If the string has data type char, the length includes all trailing blanks.
 If the string is null, it returns null.
Syntax: length (column/expression)
Ex:

Select ’Oracle’ string, length (’oracle’) length from dual;
Select length(ename)||’ characters exit in ’||INITCAP(ename)||’ s name.’ as “names and
lengths” from emp;
Select initcap(ename), job from emp where length(job) = 7;

Suresh.n2008@gmail.com

Page 35
Nallapareddy Suresh Reddy

Sub String Function:

 Returns specified characters from character value, starting from a specified position ‘m’
to ‘n’ characters long.
Syntax: substr(col/expr, m,n)

Points to remember:
 If “m” is 0, it is treated as 1.
 If “m” is positive, oracle counts from the beginning of string to find the first character.
 If “m” is negative, oracle counts backwards from the end of the string.
 If “n” is omitted, oracle returns all characters to the end of string.
 If “n” is less than 1 or 0, A NULL is returned.
 Floating point numbers passed as arguments to substr are automatically converted to
integers.
Ex:

Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,3,4) substring from dual;
Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,-5,4) substring from dual;
Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,0,4) substring from dual;
Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,4) substring from dual;
Select ’ABCDEFGH’ string, substr(’ABCDEFGH’,4,0) substring from dual;
Select ’ABCDEFGH’ string, substr(’ABCDEFGH’,4,-2) substring from dual;
Select ename, job from emp where substr(job,4,3) = upper(’age’);
Select concat(initcap(ename),concat(’ is a ’, concat(initcap(substr(job, 1, 3)), ’Eater’)))
From emp where substr(job,4,3) = upper(’Age’);
INSTRING Function:

 It returns the numeric position of a named character.
Syntax: instr(column/expression , char, m, n)

 The INSTR functions search string for substring that is supplied.

Suresh.n2008@gmail.com

Page 36
Nallapareddy Suresh Reddy

 The function returns an integer indicating the position of the character in string that is the
first character of this occurrence.
 Searches for column or expression beginning with its ‘m’th character for the ‘n’th
occurrence of char2, and returns the position of the character in char1, that is the first
character of this occurrence.
 ‘m’ can be positive or negative, if negative searches backward from the end of column or
expression.
 The value of ‘n’ should be positive.
 The default values of both ‘m’ and ‘n’ are 1.
 The Return value is relative to the beginning of char1 regardless of the value of ‘m’, and
is expressed in characters.
 If the search is unsuccessful, the return value is Zero.
Ex:

Select ’STRING’ string, instr(’STRING’,’R’) instring from dual;
Select ’CORPORATE FLOOR’ string, instr(’CORPORATE FLOOR’,’OR’,3,2) instring
from dual;
Select ’CORPORATE FLOOR’ string, instr(’CORPORATE FLOOR’,’OR’,-3,2) instring
from dual;
Select job, instr(job,’A’,1,2) position from emp where job = ’MANAGER’;
Select job, instr(job, ’A’,2,2) position from emp where job = ’MANAGER’;
Select job, instr(job, ’A’,3,2) position from emp where job = ’MANAGER’;
Select job, instr(job, ’A’,2) position from emp where job = ’MANAGER’;
Lpad Function:

 Pads the character value right justified to a total width of ‘n’ character positions.
 The default padding character is space.
Syntax: lpad(char1, n, ‘char2’)
Ex:

Select ’page 1’ string, lpad (’page 1’,15,’*’) lpadded From dual;

Suresh.n2008@gmail.com

Page 37
Nallapareddy Suresh Reddy

Select ’page 1’ string, lpad(’page 1’,15) lpadded From dual;
Select ename, lpad(ename,10,’-’) lpadded from emp where sal >= 2500;
Rpad Function:

 Pads the character value left justified to a total width of ‘n’ character positions.
 The default padding character is space.
Syntax: Rpad(char1, n,’char2’)
Ex:

Select ’page 1’ string, rpad (’page 1’,15,’*’) rpadded from dual;
Select ’page 1’ string, rpad (’page 1’,15) rpadded from dual;
Select ename,rpad(ename,10,’-’) rpadded from emp where sal >= 2500;
Select Ename, lpad(ename,10,’-’) lpadded, rpad(ename,10,’-’) rpadded from emp;
Select Ename, lpad(rpad(ename,10,’-’) centered from emp;
Ltrim Function:

 It enables to trim heading characters from a character string.
 All the leftmost characters that appear in the set are removed.
Syntax: ltrim(char, set)
Ex:

Select ’xyzXxyLAST WORD’ string, ltrim(’xyzXxyLAST WORD’, ’xy’) ltrimmed from
dual;
Select job, ltrim(job,’MAN’) ltrimmed from emp where job like ’MANAGER’;
Rtrim Function:

 It enables the training of trailing characters from a character string.
 All the right most characters that appear in the set are removed.
Syntax: rtrim(char, set)
Ex:

Suresh.n2008@gmail.com

Page 38
Nallapareddy Suresh Reddy

Select ’BROWNINGyxXxy’ string, rtrim(’BROWINGyxXxy’,’xy’) rtrimmed from dual;
Select rtrim(job,’ER’), job from emp where ltrim(job, ’MAN’) like ’GER’;
Trim Function:

 It enables to trim heading or trailing characters or both from a character string.
 If leading is specified concentrates on leading characters.
 If trailing is specified concentrates on trailing characters.
 If both or none is specified concentrates both on leading and trailing.
Syntax: trim(leading/trailing/both, trim char from trim source)
Ex:

Select ’MITHSS’ string, trim(’S’ from ’MITHSS’) trimmed from dual;
Select ’SSMITH’ string, trim (’S’ from ’SSMITH’) trimmed from dual;
Select ’SSMITHSS’ string, trim(’S’ from ’SSMITHSS’) trimmed from dual;
Select ’SSMITHSS’ string, trim(leading ’S’ from ’SSMITHSS’) trimmed from dual;
Select ’SSMITHSS’ string, trim(trailing ’S’ from ’SSMITHSS’) trimmed from dual;
Select ’SSMITHSS’ string, trim(both ’S’ from ’SSMITHSS’) trimmed from dual;
Replace Function:

 It returns the every occurrence of search string replaced by the replacement string.
 If the replacement string is omitted or null, all occurrence of search string are removed.
 It substitutes one string for another as well as removes characters strings.
Syntax: replace(char, search_str, replace_str)
Ex:

Select ’JACK AND JUE’ string, replace(’JACK AND JUE’,’J’,’BL’) Replaced from
dual;
Select ’JACK AND JUE’ string, replace(’JACK AND JUE’,’j’,’BL’) Replaced from
dual;

Suresh.n2008@gmail.com

Page 39
Nallapareddy Suresh Reddy

Select Ename, replace(job,’MAN’,’DAM’) replaced from emp where job=’MANAGER’;
Select job, replace(job, ’p’) from emp where job=’PRESIDENT’;
Select job, replace(job, ’MAN’, ’EXECUTIVE’) from emp where job=’SALESMAN’;
Translate Function:

 It used to translate character by character in a string.
Syntax: Translate (CHAR, FROM, To)

 It returns a CHAR with all occurrences of each character in ‘FROM’ replaced by its
corresponding character in ‘TO’.
 Characters in CHAR that are not in FROM are not replaced.
 The argument FROM can contain more characters than TO.
 If the extra characters appear in Char, they are removed from the return value.
Ex:

Select job, translate(job, ’p’,’ ’) from emp where job = ’PRESIDENT’;
Select job translate(job, ’MN’,’DM’) from emp where job = ’MANAGER’;
Select job, translate(job, ’A’,’O’) from emp where job=’SALESMAN’;
CHR Function:

 It returns a character having the ASCII equivalent to ‘n’.
 It returns the equivalent for ‘n’ in database character set or national character set.
Syntax: CHR(n)
Ex:

Select chr(67)||chr(65)||chr(84) sample from dual;
ASCII Function:

 It returns the ASCII representation in the character database set of the first characters of
the char.
Syntax: ASCII(char)

Select ASCII(’A’), ASCII(’APPLE’) from dual;

Suresh.n2008@gmail.com

Page 40
Nallapareddy Suresh Reddy

Number Functions:

 These functions accept numeric input and return numeric values as output.
 Many functions return values that are accurate to 38 decimal point.
Round Function:
Syntax: Round(n,m)

 It returns ‘n’ rounded to ‘m’ places right of the decimal point.
 If ‘m’ is omitted, ‘n’ is round to 0 places.
 ‘m’ can be negative and rounds off the digits to the left of the decimal point.
 ‘m’ must be an integer.
Ex:

Select 15.293 num1, round(15.193,1) rounded from dual;
Select 15.193 num1, round(15.193, -1) rounded from dual;
Select 45.923 num1, round(45.923,2) rounded,round(45.923,0) rounded , round(45.923,1) rounded from dual;
Truncate Function:
Syntax: Trunc(n,m)

 It returns ‘n’ truncated to ‘m’ decimal places.
 If ‘m’ is omitted, ‘n’ is truncated to 0 decimal places.
 ‘n’ can be negative to truncate ‘m’ digits left of the decimal point.
Ex:

Select 15.79 num1, trunc(15.79,1) truncated from dual;
Select 15.79 num1, trunc(15.79,-1) truncated from dual;
Select 15.79 num1, trunc(45.923,2) truncated, trunc(42.923) truncated, trunk(45.923,-1)
truncated from dual;

Suresh.n2008@gmail.com

Page 41
Nallapareddy Suresh Reddy

Ceil Function:
Syntax: Ceil(n)

 Returns the smallest integer greater than or equal to ‘n’.
 The adjustment is done to the highest nearest decimal value.
Ex:

Select 15.7 num1,ceil(15.7) ceiled from dual;
Select 14.27 num1, ceil(14.27) ceiled, ceil(14.2) ceiled, ceil(14) ceiled, ceil(0.22) ceiled
from dual;
Floor Function:
Syntax: Floor(n)

 Returns the largest integer less than or equal than ‘n’.
 The adjustment is done to the lowest nearest decimal values.
Ex:

Select 15.7 num1, floor(15.7) floor from dual;
Select 14.27 num1, floor(14.27) floor, floor(14.2) floor, floor(14) floor, floor(0.002) floor
from dual;
Modulus Function:
Syntax: MOD(m,n)

 It returns remainder of ‘m’ divided by ‘n’.
 It returns ‘m’ if ‘n’ is 0.
Ex:

Select mod(11,4), mod(10,2) from dual;
Power Function:
Syntax: power(m,n)

 Returns ‘m’ raised to the ‘n’th power.
 The base ‘m’ and the exponent ‘n’ can be any numbers.

Suresh.n2008@gmail.com

Page 42
Nallapareddy Suresh Reddy

 If ‘m’ is negative, ‘n’ must be an integer.
Ex:

Select power(3,2), power(-3,2) from dual;
Select power(3,-2), power(-3,-2) from dual;
Select power(-3.5,-2), power(3,-2.5) from dual;
Select power(-3.5,2.5), power(3.5,-2.5) from dual;
Square Root Function:
Syntax: Sqrt(n)

 It returns square root of ‘n’ as real value.
 The value of ‘n’ cannot be negative.
Ex:

Select sqrt(25) from dual;
Absolute Function:
Syntax: ABS(n)

 It returns the absolute value of ‘n’.
Ex:

Select abs(-15) from dual;
Select sal, comm, sal-comm, abs(sal-comm) from emp where comm = 1400;
Sign function:
Syntax: sign(n)

 It returns the sign specification of a number.
 If n < 0, Returns -1
 If n = 0, Returns 0
 If n < 0, Returns 1

Suresh.n2008@gmail.com

Page 43
Nallapareddy Suresh Reddy

Ex:

Select sign(-15), sign(15), sign(0) from dual;
Select sal, comm, sign(sal-comm) from emp where sign(sal-comm) = -1;
Date functions:
Sysdate:

 It is date function that returns current date and time.
 Sysdate is generally selected upon a dummy table.
Ex:

Select sysdate from dual;
Date Arithmetic:

 As database stores dates as numbers, arithmetic operations can be implemented.
 Number constants can be added or subtracted upon dates.
 The operations that can be applied are:
o Date + number  Returns date (adds number of days to a date)
o Date – number  Returns date (subtracts number of days to a date)
o Date – Date  Returns number of days. (Subtracts one date from another date)
o Date + number/24  Returns Date (adds number of hours to a date)
Ex:

Select sysdate, sysdate+3 from dual;
Select sysdate, sysdate-3, sysdate + 72/24 from dual;
Select ename, hiredate, hiredate+3 from emp;
Select ename, hiredate, sysdate – hiredate from emp;
Select ename, (sysdate-hiredate)/7 weeks from emp;
Add_Months Function:
Syntax: add_months(D,n)

Suresh.n2008@gmail.com

Page 44
Nallapareddy Suresh Reddy

 It returns the date ‘D’ plus or minus ‘n’ months
 The argument ‘n’ can be any positive or negative integer.
Ex:

 Select sysdate, add_months(sysdate,2) from dual;
 Select sysdate, add_months(sysdate,-2) from dual;
 Select sal, hiredate, add_months(hiredate,2) from emp;
Months_between Function:
Syntax: months_between (D1, D2)

 It returns number of months between dates ‘D1’ and ‘D2’.
 If D1 is later than D2 the result is positive, else negative.
 If D1 and D2 are either the same days of the months or both last days of the months, the
result is always an integer.
Ex:

Select ename, hiredate, sysdate, months_between(sysdate, hiredate) from emp;
Select empno, hiredate, months_between(sysdate,hiredate)
months_between(sysdate,hiredate) < 200;

from

emp

where

Next_day Function:
Syntax: next_day(d,char)

 It returns the date of the first week day named by char, that is later than the date‘d’.
 The char must be a day of the week in the sessions date language.
 The day of the week can be full name or the abbreviation.
Ex:

Select sysdate, next_day(sysdate,’wed’) from dual;
Select sal, hiredate, next_day(hiredate, ’Monday’) from emp;
Last_day Function:
Syntax: last_day(D)

Suresh.n2008@gmail.com

Page 45
Nallapareddy Suresh Reddy

 It returns the date of the last day of the month that contains ‘D’.
 Mostly used to determine how many days are left in the current month.
Ex:

Select sysdate, last_day(sysdate) lastday from dual;
Select last_day(sysdate) last, sysdate, last_day(sysdate)-sysdate daysleft from dual;
Rounding of Dates:
Syntax: round(date, ’format’)

 Returns date rounded to the unit specified by the format.
 If format is omitted, date is rounded to the nearest day.
Ex:

Select sysdate, round(sysdate, ’DAY’) from dual;
Select sysdate, round(sysdate, ’MONTH’) from dual;
Select sysdate, round(sysdate,’YEAR’) from dual;
Truncating Dates:
Syntax: trunk(date, ‘format’)

 Date is truncated to the nearest date with the time portion of the day truncated to the
specified unit.
 If format is omitted date is truncated to the nearest day.
Ex:

Select sysdate, trunc(sysdate, ‘DAY’) from dual;
Select sysdate, trunc(sysdate, ‘MONTH’) from dual;
Select sysdate, trunc(sysdate, ’YEAR’) from dual;
General Functions:
Handling NULL values:

 NULL: It is value which is…

Suresh.n2008@gmail.com

Page 46
Nallapareddy Suresh Reddy

o Unavailable
o Unassigned
o Unknown
o Inapplicable
 A NULL is not same as zero or blank space.
 If a row lacks the data for a particular column, than that value is said to be null or to
containing null.
Select Ename, job, sal, comm from emp;
 If any column value in an arithmetic expression is null, the overall result is also null.
 The above situation is termed as null propagation and has to be handled very carefully.
Select ename, job, sal, comm, sal+comm from emp;
Select ename, job, sal, comm, 12 * (sal + comm) from emp;
NVL Function:

 The NVL function is used to convert a null value to an actual value.
Syntax: NVL(expr1, expr2)

 Expr1: it is the source value or expression that may contain null.
 Expr2: it is the target value for converting NULL.
 NVL function can be used to convert any data type; the return value is always the same
as the data type of expr1.
 The data types of the source and destination must match.
o NVL(comm,0)
o NVL(hiredate,’01-JUN-99’)
o NVL(job, ‘NOT ASSIGNED’)
Ex:

Select ename, sal, comm, sal + nvl(comm,0) from emp;
Select ename, sal, comm, (sal * 12) + nvl(comm,0) from emp;

Suresh.n2008@gmail.com

Page 47
Nallapareddy Suresh Reddy

Select ename, sal, comm, (sal+500) + nvl(comm,0) from emp;

DECODE Function:

 It is a single row function.
 The function works on the same principle as the if – then – else.
 We can pass a variable number of values into the call of the decode ()
 Function.
 The first item is always the name of the column that needs to be decoded.
 Once all value-substitute pairs have been defined, we can optionally specify a default
value.
Syntax:

Select decode(colname, value 1, substitute1, value 2, substitute2, … returndefault) from
tablename;
 The function has no restriction on the input and output data type.
 It is the most power full function in oracle.
 The Function can work for only an analysis that considers an equality operator in the
logical comparison.
Ex:

Select Ename, job, sal,
Decode(deptno,
10,’ACCOUNTING’,
20,’RESEARCH’,
30,’SALES’,
40,’OPERATIONS’,
’OTHERS’) Departments
From Emp

Suresh.n2008@gmail.com

Page 48
Nallapareddy Suresh Reddy

Order by Departments;

Working with CASE expressions:

 The case expression can be used to perform if-then-else logic in SQL.
 Case is similar to decode but it is ANSI-compliant.
 It can be used even for executing conditions on range based comparison.
 Case expressions are of two types
o Simple case expressions
o Searched case expressions
Simple case expressions:
 These expressions are used to determine the returned value.
 They work with equality comparison only, almost all similar to decode.
 It has a selector which associates to the compared value either from the column or
constant.
 The value in the selector is used for comparison with the expressions used in the when
clause.
Syntax:
Case search_expr
When expr_1 then result 1
When expr_2 then result 2
Else default_result
End
Ex:
Select Ename, Deptno,
Case
When 10 then ’ACCOUNTS’

Suresh.n2008@gmail.com

Page 49
Nallapareddy Suresh Reddy

When 20 then ’RESEARCH’
When 30 then ’SALES’
When 40 then ’OPERATIONS’
Else ’NOT FOUND’
End
From emp;
Searched case expressions:
 The statement uses conditions to determine the returned value.
 It helps in writing multiple conditions for evaluation.
 Used in range analysis of values also.
Syntax:
Case
When condition1 then result1
When condition2 then result2
When condition N then result
Else default result
End
Ex:
Select ename, deptno,
Case
When deptno = 10 then ’ACCOUNTS’
When deptno = 20 then ’RESEARCH’
When deptno = 30 then ’SALES’
When deptno = 40 then ’OPERATIONS’
Else ’not specified’

Suresh.n2008@gmail.com

Page 50
Nallapareddy Suresh Reddy

End
From emp;
Select Ename, Sal,
Case
When sal >= 800 and sal <= 2000 then ’Lowest pay’
When sal >=2001 and sal <= 4000 then ’Moderate pay’
Else ’High pay’
End
From Emp;

Suresh.n2008@gmail.com

Page 51
Nallapareddy Suresh Reddy

Conversion Functions
The conversion functions convert a value from one data type to another.
Data type conversion:

 The Explicit conversion functions are
o TO_CHAR 
To Character conversion
o TO_DATE

To Date conversion
o TO_NUMBER 
To Number conversion
To_CHAR conversion function:

 This function can be used in two different flavors.
o To_Char (number conversion)
o To_Char(date conversion)
o To_CHAR (Number conversion)
Syntax: To_Char(number, fmt, ‘nlsparams’)

 Converts number of number data type to a value of varchar2 data type.
 ‘fmt’ is the optional number format, that can be used.
 The ‘nlsparms’ specifies the characters returned by the number format element.
To_char (date conversion)
Syntax: To_char(date, fmt,’nlsparams’)

 Converts date of date data type to a value of varchar2 data type in the format specified.
 ‘fmt’ is the optional date format, that can be used.
 The ‘nlsparams’ specifies the language in which month and day names and abbreviations
are returned.
Working with number format models:
Decimal Indicator: D  99D99

 It returns the specified position of the decimal character.
 The default decimal delimiter is ‘.’

Suresh.n2008@gmail.com

Page 52
Nallapareddy Suresh Reddy

 Only one decimal indicator can be specified in a number format model.
Ex:

Select 1234, to_char(1234,’9999D99’) from dual;
Select 1234, to_char(1234,’999D99’) from dual;
Scientific notation indicator: EEEE  9.9 EEEE

 Returns a numeric value using scientific notation.
Ex:

Select 1234, to_char(1234,’9.9EEEE’), to_char(1234,’9.99EEEE’) from dual;
Group separator: G  9G999

 Returns the specified position of the group separator
 Multiple group separators can be specified
Ex:

Select 1234567, to_char(1234567,’99G99G999’) from dual;
Select sal, to_char(sal, ’99G999D99’) from emp;
Local Currency Indicator: L  L999 OR 999L

 It Returns the specified position of the local currency symbol.
Ex:

Select 1234, to_char(1234,’L9999’) from dual;
Select sal, to_char(sal,’L999999’) currency from emp;
Select Sal, to_char(sal,’L99G999D99’,’NLS_CURRENCY = IndRupees’) sal from emp;
Trailing Minus Indicator: MI  9999MI

 It returns negative value with a trailing minus sign.
 It returns positive value with a trailing blank.
 ‘MI’ format should be declared as trailing argument only.

Suresh.n2008@gmail.com

Page 53
Nallapareddy Suresh Reddy

Ex:

Select -1000, to_Char(-1000,’L99G999D99MI’) from dual;
Select sal, comm, to_char(comm – sal,’L99999MI’) from emp;
Negative Number Indicator: PR  9999PR

 Returns negative number in ‘<>’
 It can appear only as trailing declaration.
Ex:

Select to_char(-1000,’L99G999D99PR’) from dual;
Select sal,comm, to_char(comm –sal,’L99G999D99PR’) from emp;
Roman Number Indicator: RN or rn

 RN  returns upper roman number.
 rn  returns lower roman number.
 The value can be an integer between 1 and 3999.
Ex:

Select 1000, to_char(1000,’RN’), to_char(1000,’rn’) from dual;
Sign Indicator: S  S99999 OR 99999S

 Returns negative value with a leading minus sign.
 Returns positive value with a leading plus sign.
 ‘S’ can appear as first or last value.
Ex:

Select 1000, to_char(1000,’S9999’) from dual;
Select to_char(1000,’9999S’), to_char(-1000,’9999S’) from dual;
Select sal, to_char(sal,’S99999’),to_char(sal,’99999S’) from emp;
Select sal, comm, to_char(comm – sal,’S99999’), to_char(comm – sal,’99999S’) from
emp;

Suresh.n2008@gmail.com

Page 54
Nallapareddy Suresh Reddy

Hexadecimal Indicator: X  XXXX

 Returns the hexadecimal value of the specified number of digits.
 If the number is not an integer, oracle rounds it to an integer.
 Accepts only positive values OR 0.
Ex:

Select 1000, to_char(1000,’XXXX’) from dual;
Select ename, sal, to_char(sal,’xxxxx’) hexsal from emp;
Group Separator: ,  9,999

 Returns a comma in the specified position.
 Multiple commas can be specified.
Ex:

Select 10000, to_char(10000,’99,999.99’) from dual;
Select ename, sal, to_char(sal, ’99,999.99’) from emp;
Decimal Indicator: .  99.99

 Returns a decimal point, at the specified position.
 Only one period can be specified in a number format model.
Ex:

Select 10000, to_char(10000,’L99,999.99’) from dual;
Select Ename, Sal, to_char(sal,’L99,999.99’) from emp;
Dollar Indicator: $  $9999

 Returns value with a leading dollar sign.
Ex:

Select 10000, to_char(10000,’$99,999.99’) from dual;
Select ename, sal, to_char(sal,’$99,999.99’) from emp;

Suresh.n2008@gmail.com

Page 55
Nallapareddy Suresh Reddy

Zero Indicator: 0  0999 OR 9990

 Returns leading OR trailing zeros.
Ex:

Select 10000,to_char(1000,’0999999’), to_char(1000,’09999990’) from dual;
Select ename, sal, to_char(sal,’$099,999.99’) from emp;
Digit place Marker: 9  9999

 Returns value with a specified number of digits with a leading space when positive or
leading minus when negative.
Ex:

Select 1000, 600, to_char(1000-600,’99999’), to_char(600-1000,’99999’) from dual;
Select 20.25, 20, to_char(20.25 – 20,’99999’) from dual;
ISO Currency Indicator: C  C999

 Returns specified position of the ISO currency symbol.
Ex:

Select 1000,to_char(1000,’C9999.99’) from dual;
Select ename, sal, to_char(sal,’C9999.99’) from emp;
Date Format Models:

 The date format models can be used in the To_char function to translate a date value from
original format to user format.
 The total length of a date format model cannot exceed 22 characters.
Date Format Elements:

 A date format model is composed of one or more date format Elements.
 For input format models, format items cannot appear twice, and format items that
represent similar information cannot be combined.
 Capitalization In a spelled word, abbreviation, or Roman numeral follows capitalization
in the corresponding format element.
 Punctuation such as hyphens, slashes, commas, periods and colons.

Suresh.n2008@gmail.com

Page 56
Nallapareddy Suresh Reddy

AD or A.D / BC or B.C Indicator:

 Indicates AD/BC with or without periods.
Ex:

Select sysdate, to_char(sysdate,’AD’) from dual;
Select to_char(sysdate,’B.C.’), to_char(sysdate,’A.D.’) from dual;
Select ename, sal, hiredate, to_char(hiredate,’A.D.’) from emp;
Meridian Indicator: AM or A.M. / PM or P.M.

 It indicates meridian indicator with or without periods.
Ex:

Select sysdate, to_char(sysdate, ’A.M.’), to_char(sysdate,’PM’) from dual;
Select ename, sal, hiredate, to_char(hiredate,’AM’) from emp;
Century Indicator: CC/SCC

 Indicates the century, S prefixes BC Date with ‘-‘.
Ex:

Select sysdate, to_char(sysdate,’CC-AD’) from dual;
Select sal, hiredate, to_char(hiredate,’SCC-AD’) from emp;
Numeric week Day Indicator: D  (1 – 7)

 Returns the week day number
Ex:

Select sysdate,to_char(sysdate,’D’) from dual;
Select Ename, hiredate, to_char(hiredate, ‘D’) from emp;
Week Day spelling Indicator:  Day

 Pads to a length of 9 characters.
Ex:

Select sysdate, to_char(sysdate,’DAY’) from dual;

Suresh.n2008@gmail.com

Page 57
Nallapareddy Suresh Reddy

Select sal, hiredate, to_char(hiredate,’DAY’) from emp where to_char(hiredate,’DAY’)
=’WEDNESDAY’;
Month Day Indicator: DD

 It indicates the day of the month(1-31)
Ex:

Select sysdate, to_char(sysdate,’DD-DAY’) from dual;
Select hiredate, to_char(hiredate,’DD-DAY’) from emp;
Select hiredate, to_char(hiredate,’DD-DAY’) from emp where to_char(hiredate,’DDDAY’) = ’03-WEDNESDAy’);
Year Day Indicator: DDD

 It indicates the day of the year (1 – 366)
Ex:

Select sysdate, to_char(sysdate,’DDD’) from dual;
Select
Ename,
hiredate,
to_char(hiredate,’DDD’)
to_char(hiredate,’DAY’) =’WEDNESDAY’;

from

emp

where

Abbreviated Week Day: DY

 It indicates the abbreviated name of the week day.
Ex:

Select sysdate, to_char(sysdate,’D-DY-DAY’) from dual;
Select ename, hiredate, to_char(hiredate,’D-DY-DAY’) from emp;
ISO Standard Year Week Indicator: IW

 Specifies the week of the year (1 – 52 or 1 – 53) based on the ISO standard.
Ex:

Select sysdate, to_char(sysdate,’IW’) from dual;
Select ename, hiredate, to_char(hiredate,’IW’) from emp;

Suresh.n2008@gmail.com

Page 58
Nallapareddy Suresh Reddy

ISO Standard 4 Digit Year Indicator: IYYY

 Specifies 4 digits year based on the ISO standard.
 It can even be used in combination of IYY, IY, I.
Ex:

Select sysdate, to_char(sysdate,’IYYY’) from dual;
Select
ename,
hiredate,
to_Char(hiredate,’IYYY’)
to_char(hiredate,’DAY’) =’WEDNESDAY’;

from

emp

where

Four Digit Year Indicators: YYYY OR SYYYY

 Returns four digit year, ‘S’ prefixes BC dates with ‘-‘.
 It can even be used in combination of YYY or YY or Y.
 Y, YYY returns year with comma in that position.
Ex:

Select sysdate, to_char(sysdate,’YYYY’) four, to_char(sysdate,’YYY’) three from dual;
Select ename, hiredate, to_char(hiredate,’YYYY’) from emp;
Spelled year Indicator: YEAR OR SYEAR

 Returns the numerical year in spelling.
 ‘S’ prefixes BC Dates with ‘-‘.
Ex:

Select sysdate, to_Char(sysdate,’YEAR’) from dual;
Select Ename, hiredate, to_char(hiredate,’YEAR’) from emp;
Week of the month Indicator: W

 Specifies the week of the month (1 - 5).
 Week starts on the first day of the earth month and ends on the seventh day.
Ex:

Select sysdate, to_char(sysdate,’W’) from dual;

Suresh.n2008@gmail.com

Page 59
Nallapareddy Suresh Reddy

Select ename, hiredate, to_char(hiredate,’W’) from emp;
Year Week Indicator: WW

 Specifies the week of the year (1 – 53).
 Week 1 starts on the first day of the year and continues to the seventh day in that year.
Ex:

Select sysdate, to_char(sysdate,’WW’) from dual;
Select ename, hiredate, to_char(hiredate,’WW’) from emp;
Quarter of the Year Indicator: Q

 Returns the quarter of the year.
 Quarter starting with the month of January and ending with every three months.
Ex:

Select sysdate, to_char(sysdate,’Q’) from dual;
Select ename, hiredate, to_char(hiredate,’Q’) From emp where to_char(hiredate,’Q’) = 4;
Julian Day Indicator: J

 Returns the Julian day of the given date.
 It is the number of days since January 1, 4712 BC.
 Numbers specified with ‘J’ must be integers.
Ex:

Select sysdate, to_char(sysdate,’J’) from dual;
Select Ename, to_char(hiredate,’J-DDD-DD-D’) From emp;
Numeric Month Indicator: MM

 Returns the numeric abbreviation of the month.
Ex:

Select sysdate, to_char(sysdate,’MM-YYYY’) from dual;

Suresh.n2008@gmail.com

Page 60
Nallapareddy Suresh Reddy

Select ename, hiredate, to_char(hiredate,’DD-MM-YYYY’)
to_char(hiredate,’MM’) = 12;

From

emp

where

Abbreviated Month Indicator: MON

 Returns the abbreviated name of the month.
Ex:

Select sydate, to_char(sysdate,’MM-MON’) from dual;
Month Spelling Indicator: MONTH

 Spells the name of the month, padded to a length of 9 characters.
Ex:

Select sysdate, to_char(sysdate,’MON-MONTH’) From dual;
Select ename, hiredate, to_char(hiredate,’MONTH, YYYY’) from emp;
Twelve Hour Clock Mode: HH or HH12

 Returns the hour of the day in twelve hour clock mode.
Ex:

Select sysdate, to_char(sysdate,’HH’), to_char(sysdate,’HH12, AM’) from dual;
Select ename, hiredate, to_char(hiredate,’HH12 : AM’) from emp;
Twenty Hour Clock Mode: HH24

 Returns the hour of the day in twenty four hour clock mode. (0 – 23)
Ex:

Select sysdate, to_char(sysdate,’HH24’) from dual;
Minutes Indicator: MI

 Returns the minutes from the given date (0 – 59).
Ex:

Select sysdate, to_char(sysdate,’MI’), to_char(sysdate,’HH:MI’) from dual;
Select Ename, sal, to_char(hiredate,’HH:MI’) from emp where job =’CLERK’;

Suresh.n2008@gmail.com

Page 61
Nallapareddy Suresh Reddy

Roman Month Indicator: RM

 Returns the roman numerical month (I – XII).
Ex:

Select sysdate, to_char(sysdate,’RM’), to_char(sysdate,’DD-RM-YY’) from dual;
Select ename, sal, to_char(hiredate,’DD-RM-YY’) From emp;
Seconds Indicator: SS

 Returns seconds from the given date (0 – 59).
Ex:

Select sysdate, to_char(sysdate,’SS’), to_char(sysdate,’HH:MI:SS’) from dual;
Select sysdate, to_char(sysdate,’DD-MONTH-YYYY, HH:MI:SS A.M.’) from dual;
Select ename, sal, hiredate, to_char(hiredate,’HH24:MI:SS’) from emp;
Seconds Past Mid Night: SSSSS

 Display seconds past midnight (0 – 86399).
Ex:

Select sysdate, to_char(sysdate,’SSSSS’) from dual;
Date Format Punctuators:

 The Punctuation marks that can be used in date formats are…
 ‘-‘, ‘/’, ‘!’, ‘.’ , ‘;’, ‘:’, “text”
Date Format Elements Suffixes: TH OR SP

TH  Suffixes the Ordinal number with ‘ST’ or ‘ND’ or ‘RD’ or ‘TH’.
Example: DDTH  20TH.
Ex:

Select sysdate, to_char(sysdate,’DDTH,MONTH,YYYY’) from dual;
Select ename, sal, hiredate, to_char(hiredate,’DDTH,MONTH,YYYY’) from emp;
Sp  Spells Ordinal Numbers.

Suresh.n2008@gmail.com

Page 62
Nallapareddy Suresh Reddy

Example: DDSP  TWENTY

Select sysdate, to_char(sysdate,’DDSP, Month, YYY’) from dual;
Select ename, sal, to_char(hiredate,’DDSP,Month,YYYY’) from emp;
Select sysdate, to_char(sysdate,’DDSPTH, Month,YYYY’) from dual;
Select ename, sal, to_char(hiredate,’DDSPTH, Month, YYYY’) from emp;
Select sysdate, to_char(sysdate,’DDSPTH Month YYYYSP’) from dual;
Date format Elements Restrictions:

 The suffixes when added to date return values always in English.
 Date suffixes are valid only on output, hence cannot be used to insert a date into the
database.
Format Model Modifiers:
Fill Mode Indicator: FM

 It suppresses blank padding in the return value of the to_char function.
Format Exact: FX

 It specifies exact matching for the character argument and date format model.
Ex:

Select
sysdate,
to_char(sysdate,’DDSPTH
MONTH
to_char(sysdate,’FMDDSPTH MONTH YYYYSP’) from dual;

YYYYSP’),

TO_NUBMER Function:
Syntax: TO_NUBMER (char, fmt, ‘nlsparam’)

 It converts a char, value of CHAR or varchar2 data type containing a number in the
format specified by the optional format model ‘fmt’ to a value of number data type.
Ex:

Select ’$10,000.00’, to_number(’$10,000.00’,’L99,999.99’) from dual;
Select ’$1,000.00’ to_number(’$1,0000.00’,’L9,999.99’) + 500 from dual;

Suresh.n2008@gmail.com

Page 63
Nallapareddy Suresh Reddy

TO_DATE Function:
Syntax: TO_DATE(char, fmt, ‘nlsparam’)

 Converts given char of CHAR or VARCHAR2 data type to a value of DATE data type.
 The ‘fmt’ is an optional date format specifying the format of char.
Ex:

Select ename, hiredate, add_months(to_date(’17-DEC-1980’,’DD-MON-YY’),3) from
emp where hiredate = ’17-DEC-1980’;
Select ename, hiredate,add_months(to_date(’1980-DECEMBER-17’,’YYYY-MONTHDD’),3) from emp where hiredate = ’17-DEC-1980’;
Select ename, hiredate, add_months(to_date(’1980-DECEMBER-17’,’YYYY-MONTHDD’),3) from emp where to_char(hiredate,’FMYYYY-MONTH-DD’) =’1980DECEMBER-17’);
Select ’12-August-2007’,to_date(’12-August-2007’,’DD-Month-YYYY’) + 3 from dual;

Let Us Revisit INSERT Statement Once Again:
Working With Invalid Numbers:
Ex:

Create table sampins
(
SampleNum number(6),
SampleDate Date
);
Insert into sampins(SampleNum,SampleDate) alues(to_number(’1,23,456’,’9G99G999’),
sysdate);
Insert
into
sampins(SampleNum,
‘,’9G99G999MI’),sysdate);

Suresh.n2008@gmail.com

SampleDate)

values(to_number(’1,23,457-

Page 64
Nallapareddy Suresh Reddy

Working With Invalid Dates:
Ex:

Insert into sampins(SampleNum, SampleDate) values(123458,’02-AUG-07’);
Insert into sampins(SampleNum, SampleDate) values(123459,sysdate);
Insert into Sampins(SampleNum, SampleDate) values(123460, to_date(’02-August2007,06:45:36 P.M.’,’DD-Month-YYYY,HH:MI:SS P.M.’);
Spelling a Number:
Ex:

Select to_char(to_date(’&GiveNumber’,’J’),’JSP’) “splled number” from dual;

Suresh.n2008@gmail.com

Page 65
Nallapareddy Suresh Reddy

Group by, Grouping Functions and having
clause
Aggregate or Group Functions:

 These functions return a single row based on groups of rows.
 These functions can appear in select lists and having clauses only.
 These functions operate on sets of rows to give one result per group.
 The sets may be the whole table or the table split into groups.
Guidelines to use group functions:

 DISTINCT makes the function to consider only non-duplicate values.
 ALL makes the function to consider every value including duplicates.
Syntax: GroupFunctionName(distinct /all col)

 The data types for arguments may be CHAR, VARCHAR2, NUMBER OR DATE.
 All group functions except count (*) ignore NULL values. To substitute a value for
NULL value, Use the NVL Function.
 When a group function is declared in a select list, no single row columns should be
declared.
 When a group function is declared in a select list, other columns can be declared, but they
should be grouped columns, and all the non-functional columns should be declared into
group by clause.
Average Function:
Syntax: AVG (Distinct /All cols)

 It Returns the AVERAGE value of column.
 It ignores NULL values.
Ex:

Select avg(sal), avg(distinct sal) from emp;

Suresh.n2008@gmail.com

Page 66
Nallapareddy Suresh Reddy

Select avg(comm), avg(distinct comm) from emp;
Sum Function:
Syntax: Sum(distinct/all col)

 It returns the sum value of column.
 It ignores NULL values.
Ex:

Select sum(sal), sum(distinct sal) from emp;
Select sum(comm), sum(distinct comm) from emp;
Maximum Function:
Syntax: Max(Distinct /All col)

 It returns the maximum value of column.
 It ignores NULL values.
Ex:

Select max(sal), max(distinct sal) from emp;
Select Max(comm), max(distinct comm) from emp;
Minimum Function:
Syntax: Min(distinct / all col)

 It returns the minimum value of the column.
 It ignores NULL values.
Ex:

Select min(sal), min(distinct sal) from emp;
Select min(Comm), min(distinct Comm) from emp;
Standard Deviation Function:
Syntax: STDDEV(distinct /All col)

 It returns the standard deviation of the column.

Suresh.n2008@gmail.com

Page 67
Nallapareddy Suresh Reddy

 It ignores NULL values.
Ex:

Select stddev(sal), stddev(distinct sal) from emp;
Select stddev(Comm), stddev(distinct Comm) from emp;
Variance Function:
Syntax: variance(distinct / All col)

 It returns the variance of N.
 It ignores the NULL values.
Ex:

Select variance(sal), variance(distinct sal) from emp;
Select variance(Comm), variance(distinct variance) from emp;
Count Function:
Syntax: Count(*/Distinct/All col)

 It returns the number of rows in the query.
 It ‘*’ is used returns all rows, including duplicated and NULL’s.
 It can be used to specify the count of all rows or only distinct values of col.
Ex:

Select count(*) from emp;
Select count(job), count(distinct job) from emp;
Select count(sal), count(Comm) from emp;
Select count(empno), count(distinct MGR) from emp;
Creating Groups of Data:

 The group by clauses is used to decide the rows in a table into groups.

Suresh.n2008@gmail.com

Page 68
Nallapareddy Suresh Reddy

Syntax1:

Select columnName1, columnName2,… From TableName where condition(s) group by
columnNmae(s) Order by ColumnName(s);
Syntax2:

Select columnName1, GRP_FUN(Column) from TableName where Condition(s) Group
by ColumnName(s) Order by Column(s);
Guidelines to use Group by clause:

 If the group function is included in a select clause, we should not use individual result
columns.
 The extra non group functional columns should be declared in the group by clause.
 Using where clause, rows can be pre excluded before dividing them into groups.
 Column aliases cannot be used in group by clause.
 By default, rows are sorted by ascending order of the columns included in the group by
list.
 The column applied upon group by clause need not be part of select list.
Ex:

Select deptno from emp group by deptno;
Select job from emp group by job;
Select mgr from emp group by mgr;
Select to_char(hiredate, ’YYYY’) yeargroup from emp group by to_char(hiredate,
’YYYY’);
Select to_char(hiredate, ’Month’) Monthgroup from emp group by to_char(hiredate,
’Month’);
Select to_char(hiredate, ’Month’) Monthgroup from emp where to_char(hiredate,
’Month’) <> ’September’ Group by to_char(hiredate, ’Month’);
Creating Group wise summaries:
Ex:

Select deptno, avg(sal) from emp group by deptno;

Suresh.n2008@gmail.com

Page 69
Nallapareddy Suresh Reddy

Select deptno, avg(sal) from group by deptno order by avg(sal);
Select deptno, min(sal), max(sal) from emp group by deptno, job;
Note:

 The above specification falls under the principle of groups within groups.
Ex:

Select deptno, min(sal), max(sal) from emp where job= ’CLERK’ Group by Deptno;
Select deptno, sum(sal), avg(sal) from emp where job = ’CLERK’ Group by deptno;
Excluding Groups of Results:
Having Claus:

 It is used to specify which groups are to be displayed.
 The clause is used to filter data that is associated with group functions.
Syntax:

Select Column, Group_Function From Table [where condition(s)] [ Group by
Group_by_expr] [Having Group_condition(s)] [Order by column_name / Alias ];
Steps Performs By Having Clause:

 First the rows are grouped.
 Second the group function is applied to the identified groups.
 Third the groups that match the criteria in the having clause are displayed.
 The having clause can precede group by clause, but it is more logical to declare it after
group by clause.
 Group by clause can be used, without a group functions in the select list.
 If rows are restricted based on the result of a group function, we must have a group by
clause as well as the having clause.
 Existence of group by clause does not guarantee the existence of having clause, but the
existence of having clause demands the existence of group by clause.

Suresh.n2008@gmail.com

Page 70
Nallapareddy Suresh Reddy

Ex:

Select deptno, avg(sal) from emp group by deptno, having max(sal) > 2900;
Select job, sum(sal) payroll from emp where job not like ’SALES%’ group by job having
sum(sal) > 5000 order by sum(sal);
Select Deptno, min(sal), max(sal) from emp where job=’CLERK’ group by deptno
having min(sal) < 1000;
Select depnto, sum(sal) from emp group by deptno having count(deptno) > 3;
Select deptno, avg(sal), sum(sal), max(sal),min(sal) from emp group by deptno Having
avg(sal) > 2500;
Nesting of Group Functions:

 Group Functions can be nested to a depth of two levels.
Ex:

Select max(avg(sal)) from emp group by deptno;
Select max(sum(sal)), min(sum(sal)) from emp group by deptno;
Select max(sum(sal)), min(avg(sal)) from emp group by job;

Suresh.n2008@gmail.com

Page 71
Nallapareddy Suresh Reddy

Integrity Constraints
Constraints in data bases are used to define an integrity constraint, as a rule that restricts the
values in a data base.
Now we are discussing 5 types of constraints…

 NOT NULL Constraint
 UNIQUE Constraint
 PRIMARY KEY Constraint
 FOREIGN KEY Constraint
 CHECK Constraint
Declaration Style:

 Column level (OR) IN LINE Style.
 Table level (OR) OUT OF LINE Style.
Column Level:

 They are declared as part of the definition of an individual column or attribute.
 Usually applied when the constraint is specific to that column only.
Table Level:

 They are declared as part of the table definition.
 Definitely applied when the constraint is applied on combination of columns together.
Note:

 NOT NULL Constraint is the only constraint which should be declared as inline only.
 Every constraint is managed by oracle with a constraint name in the Meta data.
 Hence when we declare a constraint if we do not provide a constraint name oracle
associates the constraint with name.
 Within a single user no two constraints can have the same name.

Suresh.n2008@gmail.com

Page 72
Nallapareddy Suresh Reddy

 Rather than depending on the oracle supplied constraint name, it is better to define our
own name for all constraints.
 When constraints are named we should use ‘CONSTRAINT’ clause.
The CONSTRAINT clause can appear in:

 Create and Alter table statement.
 Create and Alter view statement.
 Oracle does not support constraints on columns or attributes whose data type is
o USER_DEFINED OBJECTS.
o NESTED TABLES and VARRAY
o REF and LOB.
NOT NULL constraint:
Exceptions:

 NOT NULL constraint is supported for an attribute whose data type is USER_DEFINED
object, VARRAY, REF, LOB.
 NOT NULL, FOREIGN KEY, and REF constraints are supported on a column of type
REF.
 NOT NULL Constraint:
 A NOT NULL constraint prohibits a column from containing NULL values.
 NOT NULL should be defined only at column level.
 The default constraint if not specified is NULL constraint.
 To satisfy the rule, every row in the table must contain a value for the column.
Restrictions:

 NULL or NOT NULL cannot be specified as view constraints.
 NULL or NOT NULL cannot be specified for an attribute of an object.
Syntax:

Create Table <table_name>
(

Suresh.n2008@gmail.com

Page 73
Nallapareddy Suresh Reddy

Column_name1 <data type>(width) NOT NULL,
Column_name2<data type>(width)
Contraint consname NOT NULL,
Column_nameN <data type>(width)
);
Illustration:

Create Table Students
(
Studno number(6)
CONSTRAINT StudnoNN NOT NULL,
StudName varchar2(25)
CONSTRAINT StudNameNN NOT NULL,
CourseName varchar2(25)
CONSTRAINT CourseNameNN NOT NULL,
JoinDate Date NOT NULL
);
UNIQUE Constraint:

 The UNIQUE constraint designates a column as a UNIQUE Key.
 A composite UNIQUE key designates a combination of column as the UNIQUE key.
 A composite UNIQUE key is always declared at the table level.
 To satisfy UNIQUE constraints, No two rows in the table can have the same value for the
UNIQUE key.
 UNIQUE key made up of a single column can contain NULL values.
 Oracle creates an index implicitly on the UNIQUE key column.

Suresh.n2008@gmail.com

Page 74
Nallapareddy Suresh Reddy

Restrictions:

 A table or view can have only one UNIQUE key column.
 UNIQUE key cannot be implemented on columns having
 LOB, LONG, LONG RAW, VARRAY, NESTED TABLE, OBJECT, BFILE, REF,
TIMESTAMP WITH TIME ZONE.
 A composite UNIQUE key cannot have more than 32 columns.
 Same column or combination of columns cannot be designated as both primary key and
UNIQUE key.
 We cannot specify a UNIQUE key when creating a sub table or sub view in an
inheritance hierarchy.
 The UNIQUE key can be specified only for the top level (root) table or view.
Syntax:

Create Table <Table_Name>
(
Column_Name1 <data type> (width) UNIQUE,
Column_Name2 <data type> (width)
CONSTRAINT ConsName UNIQUE,
Column_NameN <data type> (width)
);
Illustration: 1
Column Level Syntax:

Create Table Promotions
(
Promo_ID Number(6)
CONSTRAINT PromoIDUNQ UNIQUE,
PromoName varchar2(20),

Suresh.n2008@gmail.com

Page 75
Nallapareddy Suresh Reddy

PromoCategory varchar2(15),
PromoCost Number(10,2),
PromoBegDate Date,
PromoEndDate Date,
);
Illustration:2
Table Level Syntax:

Create Table Promotions
(
Promo_ID number(6),
PromoName varchar2(20),
PromoCategory varchar2(15),
PromoCost number(10,2),
PromoBegDate Date,
PromoEndDate Date,
CONSTRAINT PromoIDUNQ UNIQUE(Promo_ID)
);
Illustration: 3
Composite UNIQUE Constraint Syntax:

Create Table Warehouse
(
WareHouseID number(6),
WareHouseName varchar2(30),
Area number(4),
Docktype varchar2(50),

Suresh.n2008@gmail.com

Page 76
Nallapareddy Suresh Reddy

Wateraccess varchar2(10),
Railaccess varchar2(10),
Parking varchar2(10),
Vclearance number(4),
CONSTRAINT wareHouseUNQ
UNIQUE(WareHouseID, WareHouseName)
);
Illustration: 4

Create Table Students
(
StudID number(6),
CONSTRAINT StudIDUNQ UNIQUE,
Fname varchar2(30),
DOB Date,
DOJ Date,
EmailID varchar2(50)
CONSTRAINT EmailIDUNQ UNIQUE
);
PRIMARY KEY Constraint:

 A Primary key constraint designates a column as the primary key of a table or view.
 A composite primary key designates a combination of columns as the PRIMARY KEY.
 When the constraint is declared at column level only PRIMARY KEY keyword is
enough.
 A composite PRIMARY KEY is always defined at table level only.
 A PRIMARY KEY constraint combines a NOT NULL and UNIQUE constraint in one
declaration.

Suresh.n2008@gmail.com

Page 77
Nallapareddy Suresh Reddy

Restrictions:

 A Table or View can have only one Primary key.
 Primary key cannot be implemented on columns having
 LOB, LONG, LONG RAW, VARRAY, NESTED TABLE, OBJECT, BFILE, REF,
TIMESTAMP WITH TIME ZONE.
 A composite primary key cannot have more than 32 columns.
 Same column or combination of columns cannot be designated as both primary key and
UNIQUE key.
 Primary key cannot be specified when creating a sub table or sub view in an inheritance
hierarchy.
 The Primary key can be specified only for the top level (root) table or view.
Syntax:

Create Table <Table_Name>
(
Column_Name1 <data type> (width)
CONSTRAINT ColNamePK PRIMARY KEY,
Column_Name2 <data type> (width),
Column_NameN <data type> (width)
);
Illustration: 1
Column Level Syntax:

Create Table Locations
(
LocationID Number(4)
Constraint LocIDPK Primary key,
StAddress varchar2(40) NOT NULL,

Suresh.n2008@gmail.com

Page 78
Nallapareddy Suresh Reddy

PostalCode varchar2(6)
Constraint PCNN NOT NULL,
City varchar2(30)
Constraint cityNN NOT NULL
);
Illustration: 2
Table Level Syntax:

Create Table Locations
(
LocationID Number(4),
StAddress varchar2(40) NOT NULL,
PostalCode varchar2(6)
Constraint PCNN NOT NULL,
City varchar2(30)
Constraint cityNN NOT NULL
Constraint LocIdPK primary key(LocationID)
);
Illustration: 2

Create Table SalesInfo
(
SaleID Number(6),
CustID Number(6),
ProdID Number(6),
Quantity Number(6) NOT NULL,
SaleDate Date NOT NULL,

Suresh.n2008@gmail.com

Page 79
Nallapareddy Suresh Reddy

SaleDesc Long NOT NULL,
Constraint ProdCustIDPK
Primary key(SaleID,ProdID,CustID)
);
FOREIGN KEY Constraint:

 It designates a column as foreign key and establishes a relation between the foreign key
and a specified primary key or UNIQUE key.
 A composite foreign key designates a combination of columns as the foreign key.
 The TABLE or VIEW containing the foreign key is called the child object.
 The TABLE or VIEW containing the referenced key is called the parent object.
 The corresponding column or columns of the foreign key and the referenced key must
match in order and data type.
 A foreign key constraint can be defined on a single key column either inline or out of
line.
 A composite foreign key on attributes should be declared at table level or out of line
style.
 We can designate the same column or combination of columns as both a foreign key and
a primary or unique key.
 A composite foreign key constraint must refer to a composite unique key or composite
primary key in the parent table or view.
Restrictions:

 The foreign key columns cannot be applied on….
 LOB, LONG, LONG RAW, VARRAY, NESTED TABLE, OBJECT, BFILE, REF,
TIMESTAMP WITH TIME ZONE.
 A composite foreign key cannot have more than 32 columns.
 The child and parent tables must be on the same database.
References clause:

 The references clause should be used when the foreign key constraint is INLINE.

Suresh.n2008@gmail.com

Page 80
Nallapareddy Suresh Reddy

 When the constraint is out of line, we must specify the foreign key word.
ON DELETE Clause:

 The ON DELETE Clause determines how oracle automatically maintains referential
integrity if the referenced primary or unique key value is removed from master table.
 CASCADE Option can be specified if we want oracle to remove dependent foreign key
values.
 Specify SET NULL if we want Oracle to convert dependent foreign key values to null.
 On DELETE Clause cannot be specified for a view constraint.
 Declared on foreign key column only.
Steps Followed for Creating Foreign key Constraint are as Follows:
Step 1: Create Primary Master’s / Pure Master’s

Create Table Dept
(
Deptno Number(2)
Constraint deptno_PK primary key,
Dname varchar2(20)
Constraint Dname_NN NOT NULL,
Location varchar2(20)
Constraint Loc_NN NOT NULL
);
Step 2: Create Detailed / Child Table

 These are tables which can contain primary key or their own as well as foreign key’s
referring to other primary master’s or to themselves.
 These Tables are also called as dependent tables or referential tables.
Create Table Employee
(

Suresh.n2008@gmail.com

Page 81
Nallapareddy Suresh Reddy

EmployeeID Number(6)
Constraint Emp_ID_PK primary key,
Ename varchar2(30)
Constraint Ename_NN NOT NULL,
Designation varchar2(30)
Constraint Desig_NN NOT NULL,
ManagerID Number(6)
Constraint Mgr_ID_FK_SELF Refrences
Employee(EmployeeID) ON DELETE SET NULL,
Hiredate Date
Constraint hiredate_NN NOT NULL,
Commission Number (7, 2),
DeptID Number(2)
Constraint DeptID_FK
References Dept(Deptno) ON DELETE CASCADE
);
Working With Composite Keys:
Step 1: Create Pure Masters

Create Table SampleMaster1
(
SampleID1 Number(4)
Constraint SampID1PK primary key,
SampName1 varchar2(20)
Constraint SampName1NN NOT NULL,
SampleDate1 Date

Suresh.n2008@gmail.com

Page 82
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0
Oracle sql in 7 days by suesh.n v 1.0

Mais conteúdo relacionado

Mais procurados

Mais procurados (20)

SQL
SQL SQL
SQL
 
Sql Server Interview Question
Sql Server Interview QuestionSql Server Interview Question
Sql Server Interview Question
 
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEM
 
Relational Model in dbms & sql database
Relational Model in dbms & sql databaseRelational Model in dbms & sql database
Relational Model in dbms & sql database
 
12 SQL
12 SQL12 SQL
12 SQL
 
The Smartpath Information Systems | BASIC RDBMS CONCEPTS
The Smartpath Information Systems | BASIC RDBMS CONCEPTSThe Smartpath Information Systems | BASIC RDBMS CONCEPTS
The Smartpath Information Systems | BASIC RDBMS CONCEPTS
 
Ordbms
OrdbmsOrdbms
Ordbms
 
Dbms Interview Question And Answer
Dbms Interview Question And AnswerDbms Interview Question And Answer
Dbms Interview Question And Answer
 
Introduction to Data Science With R Notes
Introduction to Data Science With R NotesIntroduction to Data Science With R Notes
Introduction to Data Science With R Notes
 
Dbms important questions and answers
Dbms important questions and answersDbms important questions and answers
Dbms important questions and answers
 
Accessing database using nlp
Accessing database using nlpAccessing database using nlp
Accessing database using nlp
 
Rdbms concepts
Rdbms conceptsRdbms concepts
Rdbms concepts
 
Relational Database Fundamentals
Relational Database FundamentalsRelational Database Fundamentals
Relational Database Fundamentals
 
DBMS VIVA QUESTIONS_CODERS LODGE.pdf
DBMS VIVA QUESTIONS_CODERS LODGE.pdfDBMS VIVA QUESTIONS_CODERS LODGE.pdf
DBMS VIVA QUESTIONS_CODERS LODGE.pdf
 
Text Mining
Text MiningText Mining
Text Mining
 
Relational database- Fundamentals
Relational database- FundamentalsRelational database- Fundamentals
Relational database- Fundamentals
 
Xml
XmlXml
Xml
 
Database Theory
Database TheoryDatabase Theory
Database Theory
 
Boolean Retrieval
Boolean RetrievalBoolean Retrieval
Boolean Retrieval
 
Accessing database using nlp
Accessing database using nlpAccessing database using nlp
Accessing database using nlp
 

Destaque

Sample file processing
Sample file processingSample file processing
Sample file processingIssay Meii
 
Single-Row Functions in orcale Data base
Single-Row Functions in orcale Data baseSingle-Row Functions in orcale Data base
Single-Row Functions in orcale Data baseSalman Memon
 
Oracle material (1)
Oracle material (1)Oracle material (1)
Oracle material (1)Ashok Kumar
 
File Processing System
File Processing SystemFile Processing System
File Processing SystemDMMMSU-SLUC
 
Tree Traversals (In-order, Pre-order and Post-order)
Tree Traversals (In-order, Pre-order and Post-order)Tree Traversals (In-order, Pre-order and Post-order)
Tree Traversals (In-order, Pre-order and Post-order)raj upadhyay
 
PL-SQL DIFFERENT PROGRAMS
PL-SQL DIFFERENT PROGRAMSPL-SQL DIFFERENT PROGRAMS
PL-SQL DIFFERENT PROGRAMSraj upadhyay
 
ORACLE PL SQL FOR BEGINNERS
ORACLE PL SQL FOR BEGINNERSORACLE PL SQL FOR BEGINNERS
ORACLE PL SQL FOR BEGINNERSmohdoracle
 
Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Jargalsaikhan Alyeksandr
 

Destaque (9)

Sample file processing
Sample file processingSample file processing
Sample file processing
 
Single-Row Functions in orcale Data base
Single-Row Functions in orcale Data baseSingle-Row Functions in orcale Data base
Single-Row Functions in orcale Data base
 
Oracle material (1)
Oracle material (1)Oracle material (1)
Oracle material (1)
 
File Processing System
File Processing SystemFile Processing System
File Processing System
 
Tree Traversals (In-order, Pre-order and Post-order)
Tree Traversals (In-order, Pre-order and Post-order)Tree Traversals (In-order, Pre-order and Post-order)
Tree Traversals (In-order, Pre-order and Post-order)
 
PL-SQL DIFFERENT PROGRAMS
PL-SQL DIFFERENT PROGRAMSPL-SQL DIFFERENT PROGRAMS
PL-SQL DIFFERENT PROGRAMS
 
ORACLE PL SQL FOR BEGINNERS
ORACLE PL SQL FOR BEGINNERSORACLE PL SQL FOR BEGINNERS
ORACLE PL SQL FOR BEGINNERS
 
Oracle: Functions
Oracle: FunctionsOracle: Functions
Oracle: Functions
 
Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)Database design & Normalization (1NF, 2NF, 3NF)
Database design & Normalization (1NF, 2NF, 3NF)
 

Semelhante a Oracle sql in 7 days by suesh.n v 1.0

Database Management Lab -SQL Queries
Database Management Lab -SQL Queries Database Management Lab -SQL Queries
Database Management Lab -SQL Queries shamim hossain
 
14 22 size sql book(1)
14 22 size sql book(1)14 22 size sql book(1)
14 22 size sql book(1)bhganesh
 
Normalisation in Database management System (DBMS)
Normalisation in Database management System (DBMS)Normalisation in Database management System (DBMS)
Normalisation in Database management System (DBMS)Prof Ansari
 
Ms access Database
Ms access DatabaseMs access Database
Ms access DatabaseYasir Khan
 
SQL, Oracle, Joins
SQL, Oracle, JoinsSQL, Oracle, Joins
SQL, Oracle, JoinsGaurish Goel
 
chapter-14-sql-commands.pdf
chapter-14-sql-commands.pdfchapter-14-sql-commands.pdf
chapter-14-sql-commands.pdfstudy material
 
Unit 3 rdbms study_materials-converted
Unit 3  rdbms study_materials-convertedUnit 3  rdbms study_materials-converted
Unit 3 rdbms study_materials-convertedgayaramesh
 
Introduction to sql server
Introduction to sql serverIntroduction to sql server
Introduction to sql serverVinay Thota
 
Bank mangement system
Bank mangement systemBank mangement system
Bank mangement systemFaisalGhffar
 
Paper Presentation of SQL and PL/SQL
Paper Presentation of SQL and PL/SQL Paper Presentation of SQL and PL/SQL
Paper Presentation of SQL and PL/SQL PraveenRaj280263
 

Semelhante a Oracle sql in 7 days by suesh.n v 1.0 (20)

SQL for interview
SQL for interviewSQL for interview
SQL for interview
 
Database Management Lab -SQL Queries
Database Management Lab -SQL Queries Database Management Lab -SQL Queries
Database Management Lab -SQL Queries
 
12 SQL
12 SQL12 SQL
12 SQL
 
Sql Basics And Advanced
Sql Basics And AdvancedSql Basics And Advanced
Sql Basics And Advanced
 
Dbms Lecture Notes
Dbms Lecture NotesDbms Lecture Notes
Dbms Lecture Notes
 
Dbms Lecture Notes
Dbms Lecture NotesDbms Lecture Notes
Dbms Lecture Notes
 
14 22 size sql book(1)
14 22 size sql book(1)14 22 size sql book(1)
14 22 size sql book(1)
 
Normalisation in Database management System (DBMS)
Normalisation in Database management System (DBMS)Normalisation in Database management System (DBMS)
Normalisation in Database management System (DBMS)
 
Ms access Database
Ms access DatabaseMs access Database
Ms access Database
 
SQL cheat sheet.pdf
SQL cheat sheet.pdfSQL cheat sheet.pdf
SQL cheat sheet.pdf
 
SQL, Oracle, Joins
SQL, Oracle, JoinsSQL, Oracle, Joins
SQL, Oracle, Joins
 
Ankit
AnkitAnkit
Ankit
 
chapter-14-sql-commands.pdf
chapter-14-sql-commands.pdfchapter-14-sql-commands.pdf
chapter-14-sql-commands.pdf
 
Unit 3 rdbms study_materials-converted
Unit 3  rdbms study_materials-convertedUnit 3  rdbms study_materials-converted
Unit 3 rdbms study_materials-converted
 
Database fundamentals
Database fundamentalsDatabase fundamentals
Database fundamentals
 
Introduction to sql server
Introduction to sql serverIntroduction to sql server
Introduction to sql server
 
DBMS Part-3.pptx
DBMS Part-3.pptxDBMS Part-3.pptx
DBMS Part-3.pptx
 
Bank mangement system
Bank mangement systemBank mangement system
Bank mangement system
 
Paper Presentation of SQL and PL/SQL
Paper Presentation of SQL and PL/SQL Paper Presentation of SQL and PL/SQL
Paper Presentation of SQL and PL/SQL
 
Week 1
Week 1Week 1
Week 1
 

Último

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 

Último (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 

Oracle sql in 7 days by suesh.n v 1.0

  • 1. Oracle SQL in 7 Days [Quick Reference for oracle SQL developers] Version: 1.0 [28th November 2013] Suresh Reddy Nallapareddy Suresh.n2008@gmail.com Nice Quote: Learning is not important What you learn and how you learn Is important… By Virendra Pratap
  • 2. Nallapareddy Suresh Reddy Oracle SQL Training Program Structure --------------------------------------------- Day 1 --------------------------------------------1. 2. 3. Introduction Data types DRL, DDL, DML, TCL and DCL commands -------------------------------------------- Day 2 ----------------------------------------------4. 5. 6. 7. Select & where clause Aliases, Literals and Concatenation Arithmetic, Comparison, Logical and SQL operators Order by clause --------------------------------------------- Day 3 ---------------------------------------------8. 9. SQL functions (Character, Numeric and Date) Conversion Functions (To_char, To_date and To_number) --------------------------------------------- Day 4 ---------------------------------------------10. 11. Group by , Grouping Functions and having clause Integrity Constraints -------------------------------------------- Day 5 ----------------------------------------------12. 13. 14. Joins Pseudo Columns Set Operators -------------------------------------------- Day 6 ----------------------------------------------15. 16. 17. Sub Queries Views Indexes -------------------------------------------- Day 7 ----------------------------------------------18. 19. 20. Sequences Synonyms OLAP Functions & (Others) -------------------------------------------- END ----------------------------------------------- Suresh.n2008@gmail.com Page 1
  • 3. Nallapareddy Suresh Reddy Introduction What is a Database? The answer to this question is very simple. Database is the place where we can store our data. The Oracle database is designed in such a way that any data we want to store in it, we can store it in the form of tables. A table will contain Rows (In database terminology we will call them as Records) and Columns (In database terminology we will call them as Attributes). Why we need a Database? Let me explain this with small example. Let us take the example of GMAIL, through which we can send mails; we can chat with friends.... by logging in with our credentials (Username and Password). Here in Gmail our Usernames should be unique. While registering it will ask to enter unique user name by checking the availability and each username will be associated with a password. So, where this information will be stored? This information will be stored in the tables of a database server which is located at the company. So, each time when you are trying to login then it will validate the information with the data stored in the database and it will do appropriate action. Similarly in real life almost in the entire places database becomes a mandatory thing as we can store data into it from any place and we can access that data from any place. Take Banking, Railways ticket reservations, Bus ticket reservations, Cinema ticket reservations and information, Hospitals..... Any place you take... they need a database to maintain the information. So, now we understand the importance of the database in our real life. Now, here comes most importance question. What is SQL? What is SQL? SQL means Structured Query Language. The statements which we are going to write in this language will be called as Queries. Each query will be having its own structure. That is why this language is called as Structured Query Language. Ok fine. Now we know what SQL is. The next question is why we need SQL? Why we need SQL? So as discussed in the above sections, we will store the information in the database in the form of tables. How will you store? We cannot take it by hand and we cannot put it in the database right... Similarly how will you see the information? How will you modify the Suresh.n2008@gmail.com Page 2
  • 4. Nallapareddy Suresh Reddy information? To do all these things we need a mode of communication with the database. We need to interact with the database by some medium. Here comes the usage of a Database language by which we can perform all the above mentioned tasks on the database. One such type of Language is SQL. So, SQL is a communication language which will be used to interact with the database. So, as part of SQL we are going to learn about how to perform all the above mentioned tasks. Suresh.n2008@gmail.com Page 3
  • 5. Nallapareddy Suresh Reddy Data Types 1. Char 2. Varchar2 3. Date 4. Number 5. Long 6. Raw 7. Long Raw 8. LOB 9. CLOB 10. BLOB 11. BFILE Note:  The first 4 data types are very important and regularly used ones. Char Data type:     The Char data type is used when fixed length character string is required. It can store alphanumeric values. The maximum size of char data type is 2000 bytes. Data should enter in single quotes. Note:  If the user enters a value shorter than the specified length then the database adds blankpads to the fixed length.  In case, if the user enters a value larger than the specified length then the database would return an error. Varchar2 Data type:       The varchar2 data type supports a variable length character string. It also stores alphanumeric values. The maximum size of char data type is 4000 bytes. Data should enter in single quotes. It occupies only that space for which the data is supplied. Using varchar2 saves disk space when compared to char. Note:  In case, if the user enters a value larger than the specified length then the database would return an error. Suresh.n2008@gmail.com Page 4
  • 6. Nallapareddy Suresh Reddy Number Data type:  It stores zero, positive and negative fixed and floating point numbers.  The general declaration is Number (P, S) P  It specifies the precision, i.e., the total number of digits (1 to 38). S  It specifies the scale, i.e., the number of digits to the right of the decimal point, can range from -84 to 127. Date Data type:  It is used to store DATE and TIME information.  It allocates fixed length of 7 bytes each for century, year, month, day, hour, minute and second.  The default date format is “dd-mon-yy” or “dd-mon-yyyy”.  The date range provided by oracle is January 1, 4712 BC to December 31, 4712 AD. Timestamp Data type:  It is an extension of the DATE data type.  It stores the data in the form of century, year, month, date, hour, minute and second. Long data type:     This data type stores variable length character strings. It is used to store very lengthy text strings. The maximum size is 2 GB. The length of long values may be limited by the memory available on the computer. Note:        A single table can contain only one long column. Objects types cannot be created on long column Attribute. Long columns cannot appear in where clauses or in Integrity constraints. Indexes cannot be created on long columns. Long can be Returned through a function, but not through a stored procedure. Stored procedures cannot accept long data as arguments. It can be declared in a Pl/Sql unit but cannot be referenced in SQL. Raw data type:  It is used to store binary data like photos, signatures, thumb impressions etc.  The maximum size is 2000 bytes. Suresh.n2008@gmail.com Page 5
  • 7. Nallapareddy Suresh Reddy  While using this data type the size should be mentioned because by default it does not specify any size.  Only storage and retrieval of data are possible, manipulations of data cannot be done.  This data type can be indexed. Long Raw data type:  It is also used to store binary data.  The maximum size is 2 GB.  This data type cannot be indexed. Large Object (LOB) data types:     The built in LOB data types are: BLOB, CLOB and BFILE. BLOB and CLOB stores data internally. The BFILE is LOB which stores the data externally. The LOB data type can store large and unstructured data like text, image, audio and video.  The Maximum storage size is up to 4 GB.  BLOB stores unstructured binary large objects.  CLOB stores single byte and multi byte character data. Suresh.n2008@gmail.com Page 6
  • 8. Nallapareddy Suresh Reddy DRL, DDL, DML, TCL and DCL commands DRL (Data Retrieval Language):  Select DDL (Data Definition Language):  Create  Alter  Drop  Truncate  Rename DML (Data Manipulation Language):  Insert  Delete  Update  Merge TCL (Transaction Control Language):  Commit  Rollback  Savepoint DCL (Data Control Language):  Grant  Revoke DRL (Data Retrieval Language): This will be used for the retrieval of the data from the database. In order to see the data present in the database, we will use DRL statement. We have only one DRLstatement. SELECT is the only one DRL statement in SQL. SELECT: Select statement is used to see the data present in the database. Syntax for writing this statement is, SELECT columns_list FROM table_name; Suresh.n2008@gmail.com Page 7
  • 9. Nallapareddy Suresh Reddy If we want to see the data present in all the columns of the table, then we can use following syntax, SELECT * FROM table_name; Ex: To check data present in all the columns of Emp table, SELECT * FROM Emp; To check data present in specific columns of the table, we will use first syntax. Ex: SELECT empno,ename FROM Emp; In this I am just checking data present in empno and ename columns. DDL (Data Definition Language): These statements will work on structure of the tables. Structure of the table means, name of the table, columns and their corresponding data types and constraints on the table etc. These statements will not affect the data present in the tables. Data definition involves, creating the new tables, modifying the existing tables like changing names of tables or columns, adding new columns to the table, removing existing columns from the table, removing tables from the database..... Etc. DDL statements will carry implicit commit. So, these statements will not require any transaction control. Implicit commit means, whatever DDL statement issued against the database will be automatically committed. There is no rollback for the DDL statements. So, while working with the DDL statements we need to be very careful. NOTE: One important point to remember here is, the implicit commit which is carried by DDL statements will be applicable to total transactions happened in that session till that point. It means that if we have any unhandled (using TCL) DML statements issued against the database before issuing the DDL statements, they will also be committed to the database due to the implicit commit carried by DDL. So, we need to take care of this. If any pending DML transactions are there then first we have to handle them using commit or rollback before issuing any DDL operation in that session. Suresh.n2008@gmail.com Page 8
  • 10. Nallapareddy Suresh Reddy CREATE: Create will be used to create new tables in the Database. We can also say that Create will be used to create new objects in the database. Objects mean Table, Views, Indexes, and Synonyms..... Etc. We can create any of these objects using Create statement. But now I will discuss only about tables. Rules to create a Table:  The user should have permission on create table command.  The Table name should begin with a letter and can be 1 – 30 characters long.  The table names can contain combination of  A – Z (OR) a – z (OR) 0 – 9 (OR) _, $, #  Names cannot be duplicated for another object name in the same oracle server.  Table names are not case sensitive in oracle.  Two column names in a table should not be same name. The syntax for creating new table using CREATE statement is, CREATE TABLE table_name ( column1 datatype, column2 datatype, ----------------------------columnNdatatype ); so, using this syntax we can create new tables in the database. We can use any of the data types which we have discussed to create columns of the database depending on type of data we want to store in those columns. CREATE TABLE Employee( empno number (10), ename varchar2 (20), hiredate date, sal number (10, 2), deptno number (10) ); Suresh.n2008@gmail.com Page 9
  • 11. Nallapareddy Suresh Reddy This statement will create Employee table with columns empno (numeric type), ename (character type), hiredate (date type), sal (numeric) and deptno (numeric). If we want to see the structure of the tables without seeing the data present in the tables, we can use the describe command. Syntax for that is, DESC table_name; Ex: DESC Employee; This statement will show us the structure of Employee table. ALTER: ALTER command will be used to modify the structure of the existing tables. Using ALTER we can do following things.     Add new column to the table Remove existing column from the table Modify columns data type size of the table Change the name of a column of the table The syntax for adding new column to the table is, ALTER TABLE tab_name ADD col_name datatype; Ex: This statement will add new column gender of character type to Employee table. ALTER TABLE Employee ADD gender CHAR(1); The syntax for removing existing column from the table is, ALTER TABLE tab_name DROP COLUMN col_name; Ex: This statement will remove gender column from the Employee table. ALTER TABLE Employee DROP COLUMN gender; The syntax for modifying size of character column from the table is, ALTER TABLE tab_name MODIFY col_name datatype with new size; Suresh.n2008@gmail.com Page 10
  • 12. Nallapareddy Suresh Reddy Ex: This statement will be used to change the size of ename column to 30. ALTER TABLE Employee MODIFY ename VARCHAR2(30); This statement can be used to change the size of any column to >= max(size) of the data already present in that column. For example if the max(size) of data already present in the column is 6 , then we can modify its size to >=6. The syntax for changing the name of the column is, ALTER TABLE tab_name RENAME COLUMN old_name TO new_name; Ex: This will change the name of sal column of Employee to salary. ALTER TABLE Employee RENAME COLUMN sal TO salary; So, these are the some basic things which we can do with ALTER statement. DML (Data Manipulation Language): DML means Data Manipulation Language. These statements will be used to modify the data present in the tables. These statements will work on the data. There is no relation for these statements with the structure of the tables. Data manipulation involves Inserting data into tables, modifying the data present in the tables and removing the data from the tables. DML statements require Transaction control. Any change which is made to the database by a DML statement will be called as a transaction. So, any change made by DML statement needs to be controlled by TCL statements (Transaction Control). I will discuss about these TCL statements in my future posts. In order to handle the changes done to the database by DML statements, we need transaction control. INSERT: Insert will be used to insert new data into the tables. In other words we can say Insert will be used to create new rows in the tables. We cannot affect the existing rows from the table using Insert statement. We have two different syntaxes for writing the Insert statement. They are, INSERT INTO tab_name values (val1, val2, … , val n); INSERT INTO tab_name (col1, col2, col3, .....,coln) VALUES (val1, val2, ..... , valn); Suresh.n2008@gmail.com Page 11
  • 13. Nallapareddy Suresh Reddy First syntax is the general syntax of insert statement. In this type of syntax we must pass values to all the columns of the table, and that also in the order of presence of these columns in the table. Otherwise, we will get error. For Example, Let us say we have a table called Employee in the database. The columns present in this table are Empno, Ename, hiredate, Sal and Deptno. Now If I want to insert new row into this table using first syntax then, INSERT INTO Employee VALUES ( 1111, 'RAM', ’12-jan-2010’,5000, 20); Now, I will discuss about the 2nd syntax. In this second syntax we can enter values into the columns of the table while creating new rows in our own desired order irrespective of the order of presence of these columns in the table. This we can achieve by mentioning the desired order between tab_name and VALUES as shown in the syntax. In this syntax we can also give values to specific columns of the table only. This means, if we have 5 columns in the table and while creating the new row if you want to give values only to 3 columns we can do that by using second syntax. Ex: INSERT INTO Emp ( Empno, Ename, Sal) Values (2222, 'RAJ', 2000); INSERT INTO Emp (Empno, Sal, Ename) Values (3333, 1500, 'KRISH'); We have one more syntax for creating new rows in the table using Insert statement. That is shown below. INSERT INTO Emp VALUES ( &val1, &val2, ..... &valn). In this syntax, if we run the above statement then system will ask us to enter the values one by one. After entering the entire values row will be created in the table. After that if we hit '/' at the command prompt then system will ask us to enter the values again to create another row. Like this we can create n number of rows. DELETE: Delete will be used to remove the data from the tables. Using Delete we can remove single row or multiple rows from the table. We have two syntaxes for Delete statement. DELETE FROM tab_name; DELETE FROM tab_name WHERE condition; Suresh.n2008@gmail.com Page 12
  • 14. Nallapareddy Suresh Reddy If we use first syntax then all the rows from the table will be removed. If we want to remove specific rows only then we have to use the second syntax. Ex: If we execute this statement then all the rows from the EMP table will be removed. DELETE FROM Employee; If we execute this statement then the row belongs to employee with Empno 1111 will be removed. So, using this syntax we can remove specific rows from the table by specifying the Where clause. DELETE FROM Employee WHERE empno = 1111; Using Delete we can remove entire row from the table only. We cannot remove values from specific columns of the table using Delete statement. UPDATE: Update will be used to modify the data present in the tables. Using single update statement we can modify the data present in the single column or multiple columns of the table. Similarly, using single update we can modify data present in single row or multiple rows. Different syntax's for Update statement are, UPDATE tab_name SET col_name = val ; UPDATE tab_name SET col_name = val WHERE condition; UPDATE tab_name SET col1 = val1, col2 = val2 , .... ; UPDATE tab_name SET col1 = val1, col2 = val2,... WHERE condition; If we use the first syntax, then in all the rows of the table the column specified (col_name) will be updated to the provided value (val). If we use second syntax, then for the rows which will satisfy the condition specified in the WHERE clause column specified (col_name) will be updated to the provided value (val).Third and Fourth syntax's are similar to first and second syntax's only , only difference here is instead of updating single column we are updating multiple columns of the table. Suresh.n2008@gmail.com Page 13
  • 15. Nallapareddy Suresh Reddy Ex: UPDATE Employee SET deptno = 20; (This will update deptno to 20 in all the rows of Emp table). UPDATE Employee SET sal = 5500 WHERE ename = 'RAM'; (This will update sal of Ram to 5500). UPDATE Employee SET sal = 6000, deptno = 30 ; UPDATE Employee SET sal = 7000, deptno = 40 WHERE ename = 'RAM'; As I discussed before, if we want to insert value to a particular column of existing row we cannot use Insert statement. We have to use Update statement to update the column to that particular value. Similarly if we want to remove values from specific column then we cannot do it using Delete statement. We have to update that column or columns to null. Ex: UPDATE Employee SET deptno = null WHERE empno = 3333; MERGE: Merge statement will be used to combine data from two similar tables into single table. In order to do merge operation two tables containing similar columns are required. Generally we will use merge statement to insert data from one table into other similar table. While doing this if same row is present in both the tables then we cannot perform insert operation due to the constraints of the table. This is where the merge operation is very useful. Merge is the combination of both Insert and Update operations. So, while merging data from one table into another table, if we have same row in both the tables then we will perform UPDATE operation. If different row is present, then we will perform INSERT operation. This is the concept involved with MERGE statement. Syntax for writing the merge statement is, MERGE INTO tab1 USING tab2 ON condition WHEN MATCHED THEN UPDATE SET tab1.Col = tab2.Col WHEN NOT MATCHED THEN INSERT VALUES (tab2.col1, tab2.col2, ........ ); Let me explain this merge statement with an example. Let us say we have two similar tables Emp and Emp1. I want to merge data from Emp1 to Emp table. Then statement used for this is, MERGE INTO Emp USING Emp1 ON emp.empno = emp1.empno WHEN MATCHED THEN Suresh.n2008@gmail.com Page 14
  • 16. Nallapareddy Suresh Reddy UPDATE SET emp.sal = emp1.sal WHEN NOT MATCHED THEN INSERT VALUES ( emp1.empno, emp1.ename, emp1.sal, emp1.deptno); So, here I am merging data from Emp1 table into Emp table. ON will be used to check the common thing between the two tables to decide when to do update and when to do insert. Here using Empno column I am deciding this. Generally we will use primary key columns where unique values will be present to compare in ON condition. Now if the condition is satisfied then, WHEN MATCHED condition will be satisfied and the UPDATE statement will be performed. Here we are taking sal from emp1 table and updating it to emp table. If condition is not satisfied then WHEN NOT MATCHED condition will be satisfied and new row will be inserted into Emp table from Emp1 table. So, this is how Merge statement will be worked. So, in case of Merge operation if similar rows are there we will perform Update operation and if different row is there then we will perform Insert operation. Note: Again we are seeing remaining DDL statements. TRUNCATE: TRUNCATE will be used to remove the data from the tables. Truncate will be used to remove all the data present in the tables. We cannot remove specific rows of a table using TRUNCATE command. It means that we cannot write WHERE clause with this statement. So, using truncate we can remove entire rows from the table only. The syntax for writing TRUNCATE is, TRUNCATE TABLE tab_name; Ex: This will remove all the rows of Emp table. TRUNCATE TABLE Employee; DROP: DROP will be used to remove tables from the database. This will remove entire table from the database along with data present in it. Syntax for DROP statement is, DROP TABLE tab_name; Suresh.n2008@gmail.com Page 15
  • 17. Nallapareddy Suresh Reddy Ex: This will remove Emp table from the database. DROP TABLE Employee; RENAME: RENAME will be used to change the names of database objects like tables, views etc. Using this command we can change names of database objects only. We cannot change names of columns of the table. Syntax for this statement is, RENAME old_name TO new_name; Ex: RENAME Employee TO Employeedata; This statement will change the name of Employee table to Employeedata. TCL (Transaction Control Language): TCL means Transaction Control Language. These statements are used to control the transactions made by the DML statements to the database. Any change which is made to the database by a DML statement will be called as a transaction. We need to control these transactions made by DML statements. Whatever change made to the database by a DML statement will not reside permanently in the database, unless auto commit option enabled in the session. Those changes will reside in temporary memory. So, we need to handle these changes. We have 3 TCL statements available. COMMIT: Commit will be used to make the changes made by DML statements permanent to the database. After performing DML operations, if we issue commit then those changes will be made permanent to the database. If Auto commit option for session is enabled, then this is not required as commit takes place automatically. Suresh.n2008@gmail.com Page 16
  • 18. Nallapareddy Suresh Reddy Note: DDL statements will carry implicit commit. So, if we issue DDL statement against the database, after doing some DML operations, then due to implicit commit of DDL, previous DML statements also will be committed as commit of DDL applies for the session till that point. COMMIT; ROLLBACK: Rollback will be used to discard the changes made by DML statements to the database. If auto commit option enabled in the session, then there is no use with Rollback statements as transactions will be committed automatically. So, if we give Rollback then any pending changes to the database which are made by DML statements will be discarded. ROLLBACK; SAVEPOINT: To Rollback the changes to a certain transaction point, we will use SAVEPOINT. The SAVEPOINT statement names and marks the current point in the processing of a transaction. With the ROLLBACK TO statement, save points undo parts of a transaction instead of the whole transaction. SAVEPOINT my_savepoint; ROLLBACK TO my_savepoint; DCL (Data Control Language): DCL means Data Control Language. These statements are used for controlling the access to database objects for users. Generally these statements will be used by DBA people to control the access of users to the database. GRANT: Grant will be used for giving permissions on the database to users. Using this we can give any type of permissions to the users on the database. Suresh.n2008@gmail.com Page 17
  • 19. Nallapareddy Suresh Reddy For ex if we want to give Select permission on all the database tables to a user, GRANT SELECT ANY TABLE TO user_name; If we want to give select permission on specific table then GRANT SELECT ON tab_name TO user_name; If we want to give Create table permission then, GRANT CREATE TABLE TO user_name; REVOKE: Revoke will be used to remove the permissions which are granted previously to the users on the database. If we want to remove permissions given in the above statements, then we can use following statements. REVOKE SELECT ANY TABLE FROM user_name; REVOKE SELECT ON tab_name FROM user_name; REVOKE CREATE TABLE FROM user_name; Suresh.n2008@gmail.com Page 18
  • 20. Nallapareddy Suresh Reddy Select, where clause, Aliases, Literals, Concatenation, Operators and Order by Select Statement: The SELECT statement is used to retrieve data from one or more:      TABLES OBJECT TABLES VIEWS OBJECT VIEWS MATERIALIZED VIEWS Prerequisites:  The user must have the select privileges on the specified object.  The select ANY TABLE allows selecting the data from any recognized object. Basic SELECT Syntax: SELECT [DISTINCT] [*] {column1 [Alias]…} FROM TABLE_NAME; SELECT  Specifies a list of columns. DISTINCT  Suppresses Duplicates. *  Projection Operator to select all columns from the table. COLUMN  Selects the named column. Alias  Gives selected columns alternate column name. FROM TABLE_NAME  Specifies the table containing the columns. Retrieving Data from all columns of a Table:  For this purpose the projection operator ‘*’ is used.  The operator projects data from all the columns existing in the table with all records. Ex: SELECT * FROM EMP; Suresh.n2008@gmail.com Page 19
  • 21. Nallapareddy Suresh Reddy Retrieving Data from specific columns: Ex: SELECT Empno, Ename, Sal From Emp; SELECT Deptno, Dname, Loc from dept; SELECT Hisal, Lowsal, Grade from Salgrade; Note:  The column names need not be in the same order as table.  The column should be separated using comma.  The casing of column names is not important. Column Heading Defaults:  The default justification of the data after it is retrieved from the table is … o LEFT Date and Character data o RIGHT Numeric data.  The default display of the data is always UPPER casing.  The character and date column headings can be truncated, but number columns cannot be truncated. Suppressing Duplicate Rows in Output:  Until it is instructed Sql * puls displays the result of a query without eliminating duplicate rows.  To eliminate the duplicate rows in the result, the DISTINCT keyword is used.  Multiple columns can be described after the distinct qualifier.  The DISTINCT qualifier affects all the selected columns, and represents a DISTINCT combination of the columns. Ex: SELECT DISTINCT Deptno From Emp; SELECT DISTINCT MGR From Emp; SELECT DISTINCT Job, Deptno From Emp; SELECT DISTINCT Deptno, Job From Emp; Suresh.n2008@gmail.com Page 20
  • 22. Nallapareddy Suresh Reddy Where Clause:  Used to filtering of records.  The number of rows returned by a query can be limited using the where clause.  A where clause contains a condition that must be met and should directly follow the from clause. Syntax: SELECT [DISTINCT] [*] {column1 [Alias]…} FROM TABLE_NAME [WHERE Condition(s)];  The WHERE clause can compare o Values in columns o Literal values o Arithmetic Expressions o Functions  The components of Where clause are o Column name o Comparison Operator o Column Name (or) Constant (or) List of Values  The Character strings and dates should be enclosed in single quotation marks.  Character values are case sensitive and date values are format sensitive (DD-MON-YY). Ex: SELECT Ename, Sal, Job From Emp where job =’MANAGER’; SELECT Ename, Hiredate, Deptno, Sal From Emp where Deptno=10; SELECT Empno, Ename, Sal, Deptno From Emp where hiredate = ’01-Jan-95’; Suresh.n2008@gmail.com Page 21
  • 23. Nallapareddy Suresh Reddy Working With Aliases:  An Alias is an alternate name given for any oracle database object.  Aliases in oracle are of two types. Column Alias:  Column Alias renames a column heading in a query.  The column Alias is specified in the SELECT list by declaring the alias after the column name by using the space separator.  Alias heading appears in UPPER casing by default.  The alias should be declared in double quotes if it is against the specifications of naming conversions of oracle.  The AS keyword can be used between the column name and Alias  An Alias effectively renames the SELECT list item for the duration of that query only.  An alias cannot be used, anywhere in the select list for operational purpose. Table Alias:  Table Alias renames the original name of the table in a SQL statement.  Table Aliases are very important when working with self joins.  The table Alias is applied for the current SQL statement only.  It is an important source when implementing the standards of merge statements, correlated queries and analytic functions. Ex: Select Empno Numbers, Ename name, Sal “Basic salary”, Job Designation From Emp; Select Deptno as “Department ID”, Dname as “Department Name”, Loc as Place From Dept; Select Hisal as “Maximum Range”, Losal as “Minimum Range”, Grade From Salgrade; Suresh.n2008@gmail.com Page 22
  • 24. Nallapareddy Suresh Reddy Literals:  A Literal and a Constant value are synonyms to one another and refer to a fixed data value.  The types of literals recognized by Oracle are… o Text literals o Integer literals o Number literals o Interval literals Text literals:  It specifies a text or character literal.  It is used to specify values whenever ‘TEXT’ or CHAR appear in o Expressions o Conditions o SQL Functions o SQL Statements  Text literal should be enclosed in single quotes.  They have properties of both char and varchar2 data types.  A text literal can have a maximum length of 4000 bytes. Using Literal Character Strings:  A literal that is declared in a select list can be a character, a number or a Date.  A literal is not a column name or a column Alias.  A literal is printed for each row that is retrieved by the select statement.  Literal strings of free-form text can be included in the query as per the requirement.  Date and character literals must be enclosed within the single quotation marks.  Literals increase the readability of the output. Suresh.n2008@gmail.com Page 23
  • 25. Nallapareddy Suresh Reddy  A literal is printed for each row that is retrieved by the select statement.  Date and character literals must be enclosed within the single quotation marks. Ex: Select Ename||’ : ’|| ’month salary = ’|| Sal as salaries From Emp; Select ’The Designation of ’|| Ename ||’ is ’||Job as designation From Emp; Select ’The Annual salary of’ ||Ename|| ’ is ’ ||Sal * 12 as Annual_salray From Emp; Concatenation:  The concatenation operator links columns to other columns, Arithmetic expressions, or constant values.  Columns on either side of the operator are combined to make a single output column.  The resultant column is treated as a character expression.  The concatenation operator is represented in oracle by double pipe symbol (||). Ex: Select Empno||’ ’||Ename||’ Designation is ’||job “employee information” From Emp; Operators: Arithmetic Operators:  The Arithmetic operators can be used to create expressions on numbers and date data type columns.  The Arithmetic operators supported are: o Addition  + o Subtraction  - o Multiply  * o Divide  /  The Arithmetic operators can be used in any clause of a sql statement, except the from clause. Suresh.n2008@gmail.com Page 24
  • 26. Nallapareddy Suresh Reddy  SQL * plus ignores blank spaces before and after the arithmetic operator. Ex: Select Empno, Ename, Sal, Sal + 500 From Emp; Select Empno, Ename, Sal, Sal – 1000 From Emp; Operator Precedence:  Multiplication and Division take priority over Addition and Subtraction (*, /, +, -).  Operators of the same priority are evaluated from left to right.  To prioritize evaluation and to increase clarity parenthesis can be implemented. Ex: Select Empno, Ename, Sal, (12 * Sal) + 100 From Emp; Select Empno, Ename, Sal, 12 * (Sal + 500) From Emp; Comparison Operators:  Equality Operator  =  Not Equality Operator  < >, !=, ^=  Greater Than Operator  >  Less Than Operator  <  Greater Than Equal to Operator  >=  Less Than Equal to Operator  <= Ex: Select Ename, Sal, Job From Emp Where Job = ’MANAGER’; Select Ename, Hiredate, Deptno, Sal From Emp where Deptno < > 10; Select Empno, Ename, Sal From Emp where Sal >= 3000; Select Ename name, Sal basic, Sal * 12 Annual From Emp where sal * 12 > 60000; Suresh.n2008@gmail.com Page 25
  • 27. Nallapareddy Suresh Reddy Logical Operators:  The Logical operators combine the results of two component conditions to produce a single result.  The Logical operators are: o Logical conjunction operator  AND o Logical disjunction operator  OR o Logical negation operator  NOT AND Operator:  It Returns TRUE if both or all component conditions are TRUE.  It Returns FALSE if either is FALSE, else returns unknown. Truth Table: AND TRUE FALSE NULL TRUE T F NULL FALSE F F F NULL NULL F NULL Ex: Select Ename, Sal, Deptno, Job From Emp Where Deptno = 20 AND Job = ’MANAGER’; Select Empno, Ename, Job, Sal From Emp Where sal >= 1100 AND Job = ’CLERK’; Select Empno, Ename, Job, Sal From Emp Where Deptno = 10 AND Job = ’CLERK’; Select Ename, Sal, Job From Emp Where Sal >= 1500 AND Sal > 5000; Select Ename, Sal, Job From Emp Where (Sal >= 1500 AND Sal <=5000) AND Job = ’MANAGER’; OR Operator:  It Returns TRUE if either of the component condition is TRUE.  It Returns FALSE if both are FALSE, else returns unknown. Suresh.n2008@gmail.com Page 26
  • 28. Nallapareddy Suresh Reddy Truth Table: OR TRUE FALSE NULL TRUE T T T FALSE T F NULL NULL T NULL NULL Ex: Select Ename, Sal, Deptno, Job From Emp where Deptno = 20 OR Job = ’MANAGER’; Select Empno, Ename, Job, Sal From Emp where Sal >= 1100 OR Job =’CLERK’; Select Empno, Ename, Job, Sal From Emp where Deptno = 10 OR Job =’MANAGER’; Select Ename, Sal, Job From Emp where Sal >= 1500 OR Sal >=5000; Select Ename, Sal, Job, Deptno From Emp Where Deptno = 10 OR Deptno=20; Select Ename, Sal, Job From Emp Where Job = ’CLERK’ OR Job = ’MANAGER’; Select Ename, Sal, Job From Emp where (sal <= 2500 OR Sal >= 5000) OR Job = ’MANAGER’; NOT Operator:  It Returns TRUE if the following condition is FALSE.  It Returns FALSE if the following condition is TRUE.  If the condition is unknown, it returns unknown. Truth Table: NOT TRUE FALSE NULL NOT Suresh.n2008@gmail.com F T NULL Page 27
  • 29. Nallapareddy Suresh Reddy Ex: Select Ename, Sal, Job From Emp where NOT Job = ’MANAGER’; Select Ename, Sal, Job From Emp where NOT Sal > 5000; Select Ename, Sal, Job From Emp where NOT Sal < 5000; Select Ename, Sal, Hiredate From Emp where NOT Hiredate = ’20-FEB-81’; Select Ename, Job, Sal, Deptno From Emp where NOT Job = ’SALESMAN’ AND Deptno = 30; Combination of AND and OR Opertors: Select Empno, Ename, Job, Sal From Emp where (sal > 1100 OR Job = ’CLERK’) AND Deptno = 20; Select Empno, Ename, Job, Sal From Emp where (Deptno = 10 AND Job = ’MANAGER’) OR Sal >= 3000; Select Empno, Ename, Job, Sal From Emp where (Deptno = 10 AND Job = ’MANAGER’) OR (Deptno = 20 AND Sal >= 3000); Some Things to Note: Select Ename, Sal, Job From Emp where Job > ’MANAGER’; Select Ename, Sal, Job From Emp where Job < ’MANAGER’; Select Ename, Sal, Hiredate From Emp where Hiredate > ’21-FEB-1981’; Select Ename, Sal, Hiredate From Emp where Hiredate < ’21-FEB-1981’; Select Ename, Sal, Hiredate From Emp where Hiredate <> ’21-FEB-1981’; Select Ename, Sal, Hiredate From Emp where Job <>’CLERK’; Select Ename, Sal, Job From Emp where NOT Job > ’MANAGER’; Select Ename, Sal, Hiredate From Emp where NOT Hiredate = ’17-DEC-1980’; Select Ename, Sal, Hiredate From Emp where NOT Hiredate > ’17-DEC-1980’; Select Ename, Sal, Hiredate From Emp where NOT Hiredate > ’17-DECEMBER-1980’; Suresh.n2008@gmail.com Page 28
  • 30. Nallapareddy Suresh Reddy Rules of Operator Precedence:  The Default precedence order is: o All comparison operators o NOT operator o AND operator o OR operator  The precedence can be controlled using parenthesis. Ex: Select Ename, Deptno, Job, Sal From Emp where Deptno = 10 OR Deptno = 20 AND Job =’SALESMAN’ AND Sal > 2500 OR Sal < 1500; Select Ename, Deptno, Job, Sal From Emp where Deptno = 10 OR (Deptno = 20 AND Job = ’SALESMAN’) AND (Sal > 2500 OR Sal < 1500); SQL Operators: Between … And … Operator:  This operator is used to display rows based on a range of values.  The declared range is inclusive.  The lower limit should be declared first.  The negation of this operator is NOT BETWEEN … AND … Ex: Select Ename, Sal, Job From Emp where Sal BETWEEN 1000 AND 1500; Select Ename, Sal, Job From Emp where Sal Not between 1000 and 1500; Select Ename, Sal, Job From Emp where Job Between ’MANAGER’ And ’SALESMAN’; Select Ename, Sal, Job From Emp where Job NOT between ’MANAGER’ and ’SALESMAN’; Select Ename, Sal, Job, Hiredate From Emp where Hiredate between ’17-FEB-1981’ and ’20-JUN-1983’; Suresh.n2008@gmail.com Page 29
  • 31. Nallapareddy Suresh Reddy Select Ename, Sal, Job, Hiredate From Emp where Hiredate NOT between ’17-FEB1981’ and ’20-JUN-1983’; IN Operator:  This operator is used to test for values in a specified list.  The operator can be used upon any data type.  The negation of the operator is NOT IN. Ex: Select Ename, Sal, Job From Emp where Ename IN (’FORD’,’ALLEN’); Select Ename, Sal, Job From Emp where Ename NOT IN (’FORD’,’ALLEN’); Select Ename, Sal, Job From Emp where Ename IN(10,30); Select Ename, Sal, Job, Hiredate From Emp where hiredate IN (’20-FEB-1981’,’09-JUN1981’); IS NULL Operator:  The Operator tests for null values.  It is the only operator that can be used to test for NULL’s.  The Negation is IS NOT NULL. Ex: Select Ename, Deptno, Comm From Emp where Comm IS NULL; Select Ename, Deptno, Job, Mgr From Emp where mgr is null; Select Ename, Deptno, comm From Emp where comm Is not null; Select Ename, Deptno, comm, mgr From Emp where mgr is not null; Like Operator:  The Like operator is used to search for a matching character patterns.  The character pattern matching operation is referred as a wild card search.  The available wild cards in oracle are: o %  used to represent any sequences of zero or more characters. Suresh.n2008@gmail.com Page 30
  • 32. Nallapareddy Suresh Reddy o _  represents any single character, only at that position.  The wild card symbols can be used in any combination with literal characters.  For finding exact match for ‘%’ and ‘_’ the escape option has to be used along with ‘’ symbol. Ex: Select Ename, Job From Emp where Ename LIKE ’S%’; Select Ename,Job From Emp where Ename not like ’S%’; Select Ename,Job From Emp where ename like ’%S%’; Select Ename, Job From Emp where ename like ’_A%’; Select Ename, Job From Emp where ename not like ’_A%’; Select ename, job from emp where ename = ’SM%’; (not valid) Select ename, job from emp where ’SM%’ like Ename; (not valid) Select Ename, Hiredate From emp where hiredate like ’%-FEB-81’; Select Ename, Hiredate From emp where hiredate like ’03-%-81’; Select * from dept where Dname like ‘%_%’ ESCAPE ‘’; Ordering Information:  The order of rows returned in the result of a query undefined.  The order by clause can be used to sort the rows in the required order.  The order by clause should be the last clause in the order of all clauses in the select statement.  An expression or an alias can be specified to order by clauses for sorting.  Default ordering of data is ascending o Numbers 0-9 o Dates  Earliest – Latest o Strings A–Z Suresh.n2008@gmail.com Page 31
  • 33. Nallapareddy Suresh Reddy o NULLS  Last Ex: Select ename, job, deptno, hiredate from emp order by hiredate; Select ename, job, deptno, hiredate from emp order by hiredate desc; Select ename, job, sal from emp where job = ’MANAGER’ order by sal; Select ename,job, sal from emp where sal >= 2500 order by job, ename desc; Select empno, ename, sal, sal * 12 annsal from emp order by annsal; Select empno, ename, sal from emp order by deptno, sal, hiredate; Select empno, ename, sal from emp where sal >= 2000 order by hiredate, sal desc; Suresh.n2008@gmail.com Page 32
  • 34. Nallapareddy Suresh Reddy SQL Functions SQL functions are built into oracle and are available for use in various appropriate SQL statements.  The SQL functions can be used to… o Perform calculations on data o Modify individual data items o Manipulate output for groups of rows o Format dates and numbers for display o Convert column data types.  SQL functions may accept arguments and always return a value, and can be nested.  If an SQL function is called with a null argument, then null is returned. SQL Function Types: SQL identifies two types of functions  Single row functions  Multi row functions Single row functions: These functions return a single result for every row of a queried table or view.  Character functions  Number functions  Date functions  Conversion functions Multi row functions: These functions manipulate groups of rows and return one result per group of rows.  Aggregate or group functions Suresh.n2008@gmail.com Page 33
  • 35. Nallapareddy Suresh Reddy Character Functions: Lower Function:  It converts alpha character values to lower case.  The return value has the same data type as argument char type (Char or Varchar2) Syntax: lower (column/expression) Ex: Select ’ORACLE CORPORATION’ string, LOWER (’ORACLE CORPORATION’) lower from dual; Select ename, lower(ename) lower from emp; Select ename, job, sal from emp where lower(job) = ’manager’; Upper Function:  It converts the alpha character values to upper case.  The return value has the same data type as the argument char. Syntax: Upper (column/expression) Ex: Select ’oracle corporation’ string, upper (’oracle corporation’) upper from dual; Select ename, lower(ename), upper(ename) from emp; Select ename,job, sal from emp where job = upper (’manager’); Select ename, job , sal from emp where job = upper(lower (’MANAGER’)); Select upper (’the’ ||ename||’ basic salary is Rupees ’||Sal) from emp where job IN (’MANAGER’,upper (’clerk’)) order by sal DESC; INITCAP Function:  It converts the alpha character values into uppercase for the first letter of each word, keeping all other letters in lower case.  Words are delimited by white space or characters that are not alphanumeric. Syntax: initcap (column/expression) Suresh.n2008@gmail.com Page 34
  • 36. Nallapareddy Suresh Reddy Ex: Select ’oracle corporation’ string, initcap (’oracle corporation’) initcap from dual; Select ename, upper(ename), lower(ename),initcap(ename) from emp; CONCAT Function:  It concatenates the first characters value to the second character value.  It accepts only two parameters.  It returns the character data type. Syntax: Concat (column1/expr1 , column2/expr2) Ex: Select ’Oracle’ string1, ’corporation’ string2, concat (’oracle’,’corporation’) concat from dual; Select ename, job, concat(ename,job) concat from emp; Select concat (’The Employee Name is ’, initcap(ename)) info from emp; Select concat(concat(initcap(ename), ’ is a ’), job) job from emp; Length Function:  Returns the number of characters in a value  If the string has data type char, the length includes all trailing blanks.  If the string is null, it returns null. Syntax: length (column/expression) Ex: Select ’Oracle’ string, length (’oracle’) length from dual; Select length(ename)||’ characters exit in ’||INITCAP(ename)||’ s name.’ as “names and lengths” from emp; Select initcap(ename), job from emp where length(job) = 7; Suresh.n2008@gmail.com Page 35
  • 37. Nallapareddy Suresh Reddy Sub String Function:  Returns specified characters from character value, starting from a specified position ‘m’ to ‘n’ characters long. Syntax: substr(col/expr, m,n) Points to remember:  If “m” is 0, it is treated as 1.  If “m” is positive, oracle counts from the beginning of string to find the first character.  If “m” is negative, oracle counts backwards from the end of the string.  If “n” is omitted, oracle returns all characters to the end of string.  If “n” is less than 1 or 0, A NULL is returned.  Floating point numbers passed as arguments to substr are automatically converted to integers. Ex: Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,3,4) substring from dual; Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,-5,4) substring from dual; Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,0,4) substring from dual; Select ’ABCDEFGH’ string, substr (’ABCDEFGH’,4) substring from dual; Select ’ABCDEFGH’ string, substr(’ABCDEFGH’,4,0) substring from dual; Select ’ABCDEFGH’ string, substr(’ABCDEFGH’,4,-2) substring from dual; Select ename, job from emp where substr(job,4,3) = upper(’age’); Select concat(initcap(ename),concat(’ is a ’, concat(initcap(substr(job, 1, 3)), ’Eater’))) From emp where substr(job,4,3) = upper(’Age’); INSTRING Function:  It returns the numeric position of a named character. Syntax: instr(column/expression , char, m, n)  The INSTR functions search string for substring that is supplied. Suresh.n2008@gmail.com Page 36
  • 38. Nallapareddy Suresh Reddy  The function returns an integer indicating the position of the character in string that is the first character of this occurrence.  Searches for column or expression beginning with its ‘m’th character for the ‘n’th occurrence of char2, and returns the position of the character in char1, that is the first character of this occurrence.  ‘m’ can be positive or negative, if negative searches backward from the end of column or expression.  The value of ‘n’ should be positive.  The default values of both ‘m’ and ‘n’ are 1.  The Return value is relative to the beginning of char1 regardless of the value of ‘m’, and is expressed in characters.  If the search is unsuccessful, the return value is Zero. Ex: Select ’STRING’ string, instr(’STRING’,’R’) instring from dual; Select ’CORPORATE FLOOR’ string, instr(’CORPORATE FLOOR’,’OR’,3,2) instring from dual; Select ’CORPORATE FLOOR’ string, instr(’CORPORATE FLOOR’,’OR’,-3,2) instring from dual; Select job, instr(job,’A’,1,2) position from emp where job = ’MANAGER’; Select job, instr(job, ’A’,2,2) position from emp where job = ’MANAGER’; Select job, instr(job, ’A’,3,2) position from emp where job = ’MANAGER’; Select job, instr(job, ’A’,2) position from emp where job = ’MANAGER’; Lpad Function:  Pads the character value right justified to a total width of ‘n’ character positions.  The default padding character is space. Syntax: lpad(char1, n, ‘char2’) Ex: Select ’page 1’ string, lpad (’page 1’,15,’*’) lpadded From dual; Suresh.n2008@gmail.com Page 37
  • 39. Nallapareddy Suresh Reddy Select ’page 1’ string, lpad(’page 1’,15) lpadded From dual; Select ename, lpad(ename,10,’-’) lpadded from emp where sal >= 2500; Rpad Function:  Pads the character value left justified to a total width of ‘n’ character positions.  The default padding character is space. Syntax: Rpad(char1, n,’char2’) Ex: Select ’page 1’ string, rpad (’page 1’,15,’*’) rpadded from dual; Select ’page 1’ string, rpad (’page 1’,15) rpadded from dual; Select ename,rpad(ename,10,’-’) rpadded from emp where sal >= 2500; Select Ename, lpad(ename,10,’-’) lpadded, rpad(ename,10,’-’) rpadded from emp; Select Ename, lpad(rpad(ename,10,’-’) centered from emp; Ltrim Function:  It enables to trim heading characters from a character string.  All the leftmost characters that appear in the set are removed. Syntax: ltrim(char, set) Ex: Select ’xyzXxyLAST WORD’ string, ltrim(’xyzXxyLAST WORD’, ’xy’) ltrimmed from dual; Select job, ltrim(job,’MAN’) ltrimmed from emp where job like ’MANAGER’; Rtrim Function:  It enables the training of trailing characters from a character string.  All the right most characters that appear in the set are removed. Syntax: rtrim(char, set) Ex: Suresh.n2008@gmail.com Page 38
  • 40. Nallapareddy Suresh Reddy Select ’BROWNINGyxXxy’ string, rtrim(’BROWINGyxXxy’,’xy’) rtrimmed from dual; Select rtrim(job,’ER’), job from emp where ltrim(job, ’MAN’) like ’GER’; Trim Function:  It enables to trim heading or trailing characters or both from a character string.  If leading is specified concentrates on leading characters.  If trailing is specified concentrates on trailing characters.  If both or none is specified concentrates both on leading and trailing. Syntax: trim(leading/trailing/both, trim char from trim source) Ex: Select ’MITHSS’ string, trim(’S’ from ’MITHSS’) trimmed from dual; Select ’SSMITH’ string, trim (’S’ from ’SSMITH’) trimmed from dual; Select ’SSMITHSS’ string, trim(’S’ from ’SSMITHSS’) trimmed from dual; Select ’SSMITHSS’ string, trim(leading ’S’ from ’SSMITHSS’) trimmed from dual; Select ’SSMITHSS’ string, trim(trailing ’S’ from ’SSMITHSS’) trimmed from dual; Select ’SSMITHSS’ string, trim(both ’S’ from ’SSMITHSS’) trimmed from dual; Replace Function:  It returns the every occurrence of search string replaced by the replacement string.  If the replacement string is omitted or null, all occurrence of search string are removed.  It substitutes one string for another as well as removes characters strings. Syntax: replace(char, search_str, replace_str) Ex: Select ’JACK AND JUE’ string, replace(’JACK AND JUE’,’J’,’BL’) Replaced from dual; Select ’JACK AND JUE’ string, replace(’JACK AND JUE’,’j’,’BL’) Replaced from dual; Suresh.n2008@gmail.com Page 39
  • 41. Nallapareddy Suresh Reddy Select Ename, replace(job,’MAN’,’DAM’) replaced from emp where job=’MANAGER’; Select job, replace(job, ’p’) from emp where job=’PRESIDENT’; Select job, replace(job, ’MAN’, ’EXECUTIVE’) from emp where job=’SALESMAN’; Translate Function:  It used to translate character by character in a string. Syntax: Translate (CHAR, FROM, To)  It returns a CHAR with all occurrences of each character in ‘FROM’ replaced by its corresponding character in ‘TO’.  Characters in CHAR that are not in FROM are not replaced.  The argument FROM can contain more characters than TO.  If the extra characters appear in Char, they are removed from the return value. Ex: Select job, translate(job, ’p’,’ ’) from emp where job = ’PRESIDENT’; Select job translate(job, ’MN’,’DM’) from emp where job = ’MANAGER’; Select job, translate(job, ’A’,’O’) from emp where job=’SALESMAN’; CHR Function:  It returns a character having the ASCII equivalent to ‘n’.  It returns the equivalent for ‘n’ in database character set or national character set. Syntax: CHR(n) Ex: Select chr(67)||chr(65)||chr(84) sample from dual; ASCII Function:  It returns the ASCII representation in the character database set of the first characters of the char. Syntax: ASCII(char) Select ASCII(’A’), ASCII(’APPLE’) from dual; Suresh.n2008@gmail.com Page 40
  • 42. Nallapareddy Suresh Reddy Number Functions:  These functions accept numeric input and return numeric values as output.  Many functions return values that are accurate to 38 decimal point. Round Function: Syntax: Round(n,m)  It returns ‘n’ rounded to ‘m’ places right of the decimal point.  If ‘m’ is omitted, ‘n’ is round to 0 places.  ‘m’ can be negative and rounds off the digits to the left of the decimal point.  ‘m’ must be an integer. Ex: Select 15.293 num1, round(15.193,1) rounded from dual; Select 15.193 num1, round(15.193, -1) rounded from dual; Select 45.923 num1, round(45.923,2) rounded,round(45.923,0) rounded , round(45.923,1) rounded from dual; Truncate Function: Syntax: Trunc(n,m)  It returns ‘n’ truncated to ‘m’ decimal places.  If ‘m’ is omitted, ‘n’ is truncated to 0 decimal places.  ‘n’ can be negative to truncate ‘m’ digits left of the decimal point. Ex: Select 15.79 num1, trunc(15.79,1) truncated from dual; Select 15.79 num1, trunc(15.79,-1) truncated from dual; Select 15.79 num1, trunc(45.923,2) truncated, trunc(42.923) truncated, trunk(45.923,-1) truncated from dual; Suresh.n2008@gmail.com Page 41
  • 43. Nallapareddy Suresh Reddy Ceil Function: Syntax: Ceil(n)  Returns the smallest integer greater than or equal to ‘n’.  The adjustment is done to the highest nearest decimal value. Ex: Select 15.7 num1,ceil(15.7) ceiled from dual; Select 14.27 num1, ceil(14.27) ceiled, ceil(14.2) ceiled, ceil(14) ceiled, ceil(0.22) ceiled from dual; Floor Function: Syntax: Floor(n)  Returns the largest integer less than or equal than ‘n’.  The adjustment is done to the lowest nearest decimal values. Ex: Select 15.7 num1, floor(15.7) floor from dual; Select 14.27 num1, floor(14.27) floor, floor(14.2) floor, floor(14) floor, floor(0.002) floor from dual; Modulus Function: Syntax: MOD(m,n)  It returns remainder of ‘m’ divided by ‘n’.  It returns ‘m’ if ‘n’ is 0. Ex: Select mod(11,4), mod(10,2) from dual; Power Function: Syntax: power(m,n)  Returns ‘m’ raised to the ‘n’th power.  The base ‘m’ and the exponent ‘n’ can be any numbers. Suresh.n2008@gmail.com Page 42
  • 44. Nallapareddy Suresh Reddy  If ‘m’ is negative, ‘n’ must be an integer. Ex: Select power(3,2), power(-3,2) from dual; Select power(3,-2), power(-3,-2) from dual; Select power(-3.5,-2), power(3,-2.5) from dual; Select power(-3.5,2.5), power(3.5,-2.5) from dual; Square Root Function: Syntax: Sqrt(n)  It returns square root of ‘n’ as real value.  The value of ‘n’ cannot be negative. Ex: Select sqrt(25) from dual; Absolute Function: Syntax: ABS(n)  It returns the absolute value of ‘n’. Ex: Select abs(-15) from dual; Select sal, comm, sal-comm, abs(sal-comm) from emp where comm = 1400; Sign function: Syntax: sign(n)  It returns the sign specification of a number.  If n < 0, Returns -1  If n = 0, Returns 0  If n < 0, Returns 1 Suresh.n2008@gmail.com Page 43
  • 45. Nallapareddy Suresh Reddy Ex: Select sign(-15), sign(15), sign(0) from dual; Select sal, comm, sign(sal-comm) from emp where sign(sal-comm) = -1; Date functions: Sysdate:  It is date function that returns current date and time.  Sysdate is generally selected upon a dummy table. Ex: Select sysdate from dual; Date Arithmetic:  As database stores dates as numbers, arithmetic operations can be implemented.  Number constants can be added or subtracted upon dates.  The operations that can be applied are: o Date + number  Returns date (adds number of days to a date) o Date – number  Returns date (subtracts number of days to a date) o Date – Date  Returns number of days. (Subtracts one date from another date) o Date + number/24  Returns Date (adds number of hours to a date) Ex: Select sysdate, sysdate+3 from dual; Select sysdate, sysdate-3, sysdate + 72/24 from dual; Select ename, hiredate, hiredate+3 from emp; Select ename, hiredate, sysdate – hiredate from emp; Select ename, (sysdate-hiredate)/7 weeks from emp; Add_Months Function: Syntax: add_months(D,n) Suresh.n2008@gmail.com Page 44
  • 46. Nallapareddy Suresh Reddy  It returns the date ‘D’ plus or minus ‘n’ months  The argument ‘n’ can be any positive or negative integer. Ex:  Select sysdate, add_months(sysdate,2) from dual;  Select sysdate, add_months(sysdate,-2) from dual;  Select sal, hiredate, add_months(hiredate,2) from emp; Months_between Function: Syntax: months_between (D1, D2)  It returns number of months between dates ‘D1’ and ‘D2’.  If D1 is later than D2 the result is positive, else negative.  If D1 and D2 are either the same days of the months or both last days of the months, the result is always an integer. Ex: Select ename, hiredate, sysdate, months_between(sysdate, hiredate) from emp; Select empno, hiredate, months_between(sysdate,hiredate) months_between(sysdate,hiredate) < 200; from emp where Next_day Function: Syntax: next_day(d,char)  It returns the date of the first week day named by char, that is later than the date‘d’.  The char must be a day of the week in the sessions date language.  The day of the week can be full name or the abbreviation. Ex: Select sysdate, next_day(sysdate,’wed’) from dual; Select sal, hiredate, next_day(hiredate, ’Monday’) from emp; Last_day Function: Syntax: last_day(D) Suresh.n2008@gmail.com Page 45
  • 47. Nallapareddy Suresh Reddy  It returns the date of the last day of the month that contains ‘D’.  Mostly used to determine how many days are left in the current month. Ex: Select sysdate, last_day(sysdate) lastday from dual; Select last_day(sysdate) last, sysdate, last_day(sysdate)-sysdate daysleft from dual; Rounding of Dates: Syntax: round(date, ’format’)  Returns date rounded to the unit specified by the format.  If format is omitted, date is rounded to the nearest day. Ex: Select sysdate, round(sysdate, ’DAY’) from dual; Select sysdate, round(sysdate, ’MONTH’) from dual; Select sysdate, round(sysdate,’YEAR’) from dual; Truncating Dates: Syntax: trunk(date, ‘format’)  Date is truncated to the nearest date with the time portion of the day truncated to the specified unit.  If format is omitted date is truncated to the nearest day. Ex: Select sysdate, trunc(sysdate, ‘DAY’) from dual; Select sysdate, trunc(sysdate, ‘MONTH’) from dual; Select sysdate, trunc(sysdate, ’YEAR’) from dual; General Functions: Handling NULL values:  NULL: It is value which is… Suresh.n2008@gmail.com Page 46
  • 48. Nallapareddy Suresh Reddy o Unavailable o Unassigned o Unknown o Inapplicable  A NULL is not same as zero or blank space.  If a row lacks the data for a particular column, than that value is said to be null or to containing null. Select Ename, job, sal, comm from emp;  If any column value in an arithmetic expression is null, the overall result is also null.  The above situation is termed as null propagation and has to be handled very carefully. Select ename, job, sal, comm, sal+comm from emp; Select ename, job, sal, comm, 12 * (sal + comm) from emp; NVL Function:  The NVL function is used to convert a null value to an actual value. Syntax: NVL(expr1, expr2)  Expr1: it is the source value or expression that may contain null.  Expr2: it is the target value for converting NULL.  NVL function can be used to convert any data type; the return value is always the same as the data type of expr1.  The data types of the source and destination must match. o NVL(comm,0) o NVL(hiredate,’01-JUN-99’) o NVL(job, ‘NOT ASSIGNED’) Ex: Select ename, sal, comm, sal + nvl(comm,0) from emp; Select ename, sal, comm, (sal * 12) + nvl(comm,0) from emp; Suresh.n2008@gmail.com Page 47
  • 49. Nallapareddy Suresh Reddy Select ename, sal, comm, (sal+500) + nvl(comm,0) from emp; DECODE Function:  It is a single row function.  The function works on the same principle as the if – then – else.  We can pass a variable number of values into the call of the decode ()  Function.  The first item is always the name of the column that needs to be decoded.  Once all value-substitute pairs have been defined, we can optionally specify a default value. Syntax: Select decode(colname, value 1, substitute1, value 2, substitute2, … returndefault) from tablename;  The function has no restriction on the input and output data type.  It is the most power full function in oracle.  The Function can work for only an analysis that considers an equality operator in the logical comparison. Ex: Select Ename, job, sal, Decode(deptno, 10,’ACCOUNTING’, 20,’RESEARCH’, 30,’SALES’, 40,’OPERATIONS’, ’OTHERS’) Departments From Emp Suresh.n2008@gmail.com Page 48
  • 50. Nallapareddy Suresh Reddy Order by Departments; Working with CASE expressions:  The case expression can be used to perform if-then-else logic in SQL.  Case is similar to decode but it is ANSI-compliant.  It can be used even for executing conditions on range based comparison.  Case expressions are of two types o Simple case expressions o Searched case expressions Simple case expressions:  These expressions are used to determine the returned value.  They work with equality comparison only, almost all similar to decode.  It has a selector which associates to the compared value either from the column or constant.  The value in the selector is used for comparison with the expressions used in the when clause. Syntax: Case search_expr When expr_1 then result 1 When expr_2 then result 2 Else default_result End Ex: Select Ename, Deptno, Case When 10 then ’ACCOUNTS’ Suresh.n2008@gmail.com Page 49
  • 51. Nallapareddy Suresh Reddy When 20 then ’RESEARCH’ When 30 then ’SALES’ When 40 then ’OPERATIONS’ Else ’NOT FOUND’ End From emp; Searched case expressions:  The statement uses conditions to determine the returned value.  It helps in writing multiple conditions for evaluation.  Used in range analysis of values also. Syntax: Case When condition1 then result1 When condition2 then result2 When condition N then result Else default result End Ex: Select ename, deptno, Case When deptno = 10 then ’ACCOUNTS’ When deptno = 20 then ’RESEARCH’ When deptno = 30 then ’SALES’ When deptno = 40 then ’OPERATIONS’ Else ’not specified’ Suresh.n2008@gmail.com Page 50
  • 52. Nallapareddy Suresh Reddy End From emp; Select Ename, Sal, Case When sal >= 800 and sal <= 2000 then ’Lowest pay’ When sal >=2001 and sal <= 4000 then ’Moderate pay’ Else ’High pay’ End From Emp; Suresh.n2008@gmail.com Page 51
  • 53. Nallapareddy Suresh Reddy Conversion Functions The conversion functions convert a value from one data type to another. Data type conversion:  The Explicit conversion functions are o TO_CHAR  To Character conversion o TO_DATE  To Date conversion o TO_NUMBER  To Number conversion To_CHAR conversion function:  This function can be used in two different flavors. o To_Char (number conversion) o To_Char(date conversion) o To_CHAR (Number conversion) Syntax: To_Char(number, fmt, ‘nlsparams’)  Converts number of number data type to a value of varchar2 data type.  ‘fmt’ is the optional number format, that can be used.  The ‘nlsparms’ specifies the characters returned by the number format element. To_char (date conversion) Syntax: To_char(date, fmt,’nlsparams’)  Converts date of date data type to a value of varchar2 data type in the format specified.  ‘fmt’ is the optional date format, that can be used.  The ‘nlsparams’ specifies the language in which month and day names and abbreviations are returned. Working with number format models: Decimal Indicator: D  99D99  It returns the specified position of the decimal character.  The default decimal delimiter is ‘.’ Suresh.n2008@gmail.com Page 52
  • 54. Nallapareddy Suresh Reddy  Only one decimal indicator can be specified in a number format model. Ex: Select 1234, to_char(1234,’9999D99’) from dual; Select 1234, to_char(1234,’999D99’) from dual; Scientific notation indicator: EEEE  9.9 EEEE  Returns a numeric value using scientific notation. Ex: Select 1234, to_char(1234,’9.9EEEE’), to_char(1234,’9.99EEEE’) from dual; Group separator: G  9G999  Returns the specified position of the group separator  Multiple group separators can be specified Ex: Select 1234567, to_char(1234567,’99G99G999’) from dual; Select sal, to_char(sal, ’99G999D99’) from emp; Local Currency Indicator: L  L999 OR 999L  It Returns the specified position of the local currency symbol. Ex: Select 1234, to_char(1234,’L9999’) from dual; Select sal, to_char(sal,’L999999’) currency from emp; Select Sal, to_char(sal,’L99G999D99’,’NLS_CURRENCY = IndRupees’) sal from emp; Trailing Minus Indicator: MI  9999MI  It returns negative value with a trailing minus sign.  It returns positive value with a trailing blank.  ‘MI’ format should be declared as trailing argument only. Suresh.n2008@gmail.com Page 53
  • 55. Nallapareddy Suresh Reddy Ex: Select -1000, to_Char(-1000,’L99G999D99MI’) from dual; Select sal, comm, to_char(comm – sal,’L99999MI’) from emp; Negative Number Indicator: PR  9999PR  Returns negative number in ‘<>’  It can appear only as trailing declaration. Ex: Select to_char(-1000,’L99G999D99PR’) from dual; Select sal,comm, to_char(comm –sal,’L99G999D99PR’) from emp; Roman Number Indicator: RN or rn  RN  returns upper roman number.  rn  returns lower roman number.  The value can be an integer between 1 and 3999. Ex: Select 1000, to_char(1000,’RN’), to_char(1000,’rn’) from dual; Sign Indicator: S  S99999 OR 99999S  Returns negative value with a leading minus sign.  Returns positive value with a leading plus sign.  ‘S’ can appear as first or last value. Ex: Select 1000, to_char(1000,’S9999’) from dual; Select to_char(1000,’9999S’), to_char(-1000,’9999S’) from dual; Select sal, to_char(sal,’S99999’),to_char(sal,’99999S’) from emp; Select sal, comm, to_char(comm – sal,’S99999’), to_char(comm – sal,’99999S’) from emp; Suresh.n2008@gmail.com Page 54
  • 56. Nallapareddy Suresh Reddy Hexadecimal Indicator: X  XXXX  Returns the hexadecimal value of the specified number of digits.  If the number is not an integer, oracle rounds it to an integer.  Accepts only positive values OR 0. Ex: Select 1000, to_char(1000,’XXXX’) from dual; Select ename, sal, to_char(sal,’xxxxx’) hexsal from emp; Group Separator: ,  9,999  Returns a comma in the specified position.  Multiple commas can be specified. Ex: Select 10000, to_char(10000,’99,999.99’) from dual; Select ename, sal, to_char(sal, ’99,999.99’) from emp; Decimal Indicator: .  99.99  Returns a decimal point, at the specified position.  Only one period can be specified in a number format model. Ex: Select 10000, to_char(10000,’L99,999.99’) from dual; Select Ename, Sal, to_char(sal,’L99,999.99’) from emp; Dollar Indicator: $  $9999  Returns value with a leading dollar sign. Ex: Select 10000, to_char(10000,’$99,999.99’) from dual; Select ename, sal, to_char(sal,’$99,999.99’) from emp; Suresh.n2008@gmail.com Page 55
  • 57. Nallapareddy Suresh Reddy Zero Indicator: 0  0999 OR 9990  Returns leading OR trailing zeros. Ex: Select 10000,to_char(1000,’0999999’), to_char(1000,’09999990’) from dual; Select ename, sal, to_char(sal,’$099,999.99’) from emp; Digit place Marker: 9  9999  Returns value with a specified number of digits with a leading space when positive or leading minus when negative. Ex: Select 1000, 600, to_char(1000-600,’99999’), to_char(600-1000,’99999’) from dual; Select 20.25, 20, to_char(20.25 – 20,’99999’) from dual; ISO Currency Indicator: C  C999  Returns specified position of the ISO currency symbol. Ex: Select 1000,to_char(1000,’C9999.99’) from dual; Select ename, sal, to_char(sal,’C9999.99’) from emp; Date Format Models:  The date format models can be used in the To_char function to translate a date value from original format to user format.  The total length of a date format model cannot exceed 22 characters. Date Format Elements:  A date format model is composed of one or more date format Elements.  For input format models, format items cannot appear twice, and format items that represent similar information cannot be combined.  Capitalization In a spelled word, abbreviation, or Roman numeral follows capitalization in the corresponding format element.  Punctuation such as hyphens, slashes, commas, periods and colons. Suresh.n2008@gmail.com Page 56
  • 58. Nallapareddy Suresh Reddy AD or A.D / BC or B.C Indicator:  Indicates AD/BC with or without periods. Ex: Select sysdate, to_char(sysdate,’AD’) from dual; Select to_char(sysdate,’B.C.’), to_char(sysdate,’A.D.’) from dual; Select ename, sal, hiredate, to_char(hiredate,’A.D.’) from emp; Meridian Indicator: AM or A.M. / PM or P.M.  It indicates meridian indicator with or without periods. Ex: Select sysdate, to_char(sysdate, ’A.M.’), to_char(sysdate,’PM’) from dual; Select ename, sal, hiredate, to_char(hiredate,’AM’) from emp; Century Indicator: CC/SCC  Indicates the century, S prefixes BC Date with ‘-‘. Ex: Select sysdate, to_char(sysdate,’CC-AD’) from dual; Select sal, hiredate, to_char(hiredate,’SCC-AD’) from emp; Numeric week Day Indicator: D  (1 – 7)  Returns the week day number Ex: Select sysdate,to_char(sysdate,’D’) from dual; Select Ename, hiredate, to_char(hiredate, ‘D’) from emp; Week Day spelling Indicator:  Day  Pads to a length of 9 characters. Ex: Select sysdate, to_char(sysdate,’DAY’) from dual; Suresh.n2008@gmail.com Page 57
  • 59. Nallapareddy Suresh Reddy Select sal, hiredate, to_char(hiredate,’DAY’) from emp where to_char(hiredate,’DAY’) =’WEDNESDAY’; Month Day Indicator: DD  It indicates the day of the month(1-31) Ex: Select sysdate, to_char(sysdate,’DD-DAY’) from dual; Select hiredate, to_char(hiredate,’DD-DAY’) from emp; Select hiredate, to_char(hiredate,’DD-DAY’) from emp where to_char(hiredate,’DDDAY’) = ’03-WEDNESDAy’); Year Day Indicator: DDD  It indicates the day of the year (1 – 366) Ex: Select sysdate, to_char(sysdate,’DDD’) from dual; Select Ename, hiredate, to_char(hiredate,’DDD’) to_char(hiredate,’DAY’) =’WEDNESDAY’; from emp where Abbreviated Week Day: DY  It indicates the abbreviated name of the week day. Ex: Select sysdate, to_char(sysdate,’D-DY-DAY’) from dual; Select ename, hiredate, to_char(hiredate,’D-DY-DAY’) from emp; ISO Standard Year Week Indicator: IW  Specifies the week of the year (1 – 52 or 1 – 53) based on the ISO standard. Ex: Select sysdate, to_char(sysdate,’IW’) from dual; Select ename, hiredate, to_char(hiredate,’IW’) from emp; Suresh.n2008@gmail.com Page 58
  • 60. Nallapareddy Suresh Reddy ISO Standard 4 Digit Year Indicator: IYYY  Specifies 4 digits year based on the ISO standard.  It can even be used in combination of IYY, IY, I. Ex: Select sysdate, to_char(sysdate,’IYYY’) from dual; Select ename, hiredate, to_Char(hiredate,’IYYY’) to_char(hiredate,’DAY’) =’WEDNESDAY’; from emp where Four Digit Year Indicators: YYYY OR SYYYY  Returns four digit year, ‘S’ prefixes BC dates with ‘-‘.  It can even be used in combination of YYY or YY or Y.  Y, YYY returns year with comma in that position. Ex: Select sysdate, to_char(sysdate,’YYYY’) four, to_char(sysdate,’YYY’) three from dual; Select ename, hiredate, to_char(hiredate,’YYYY’) from emp; Spelled year Indicator: YEAR OR SYEAR  Returns the numerical year in spelling.  ‘S’ prefixes BC Dates with ‘-‘. Ex: Select sysdate, to_Char(sysdate,’YEAR’) from dual; Select Ename, hiredate, to_char(hiredate,’YEAR’) from emp; Week of the month Indicator: W  Specifies the week of the month (1 - 5).  Week starts on the first day of the earth month and ends on the seventh day. Ex: Select sysdate, to_char(sysdate,’W’) from dual; Suresh.n2008@gmail.com Page 59
  • 61. Nallapareddy Suresh Reddy Select ename, hiredate, to_char(hiredate,’W’) from emp; Year Week Indicator: WW  Specifies the week of the year (1 – 53).  Week 1 starts on the first day of the year and continues to the seventh day in that year. Ex: Select sysdate, to_char(sysdate,’WW’) from dual; Select ename, hiredate, to_char(hiredate,’WW’) from emp; Quarter of the Year Indicator: Q  Returns the quarter of the year.  Quarter starting with the month of January and ending with every three months. Ex: Select sysdate, to_char(sysdate,’Q’) from dual; Select ename, hiredate, to_char(hiredate,’Q’) From emp where to_char(hiredate,’Q’) = 4; Julian Day Indicator: J  Returns the Julian day of the given date.  It is the number of days since January 1, 4712 BC.  Numbers specified with ‘J’ must be integers. Ex: Select sysdate, to_char(sysdate,’J’) from dual; Select Ename, to_char(hiredate,’J-DDD-DD-D’) From emp; Numeric Month Indicator: MM  Returns the numeric abbreviation of the month. Ex: Select sysdate, to_char(sysdate,’MM-YYYY’) from dual; Suresh.n2008@gmail.com Page 60
  • 62. Nallapareddy Suresh Reddy Select ename, hiredate, to_char(hiredate,’DD-MM-YYYY’) to_char(hiredate,’MM’) = 12; From emp where Abbreviated Month Indicator: MON  Returns the abbreviated name of the month. Ex: Select sydate, to_char(sysdate,’MM-MON’) from dual; Month Spelling Indicator: MONTH  Spells the name of the month, padded to a length of 9 characters. Ex: Select sysdate, to_char(sysdate,’MON-MONTH’) From dual; Select ename, hiredate, to_char(hiredate,’MONTH, YYYY’) from emp; Twelve Hour Clock Mode: HH or HH12  Returns the hour of the day in twelve hour clock mode. Ex: Select sysdate, to_char(sysdate,’HH’), to_char(sysdate,’HH12, AM’) from dual; Select ename, hiredate, to_char(hiredate,’HH12 : AM’) from emp; Twenty Hour Clock Mode: HH24  Returns the hour of the day in twenty four hour clock mode. (0 – 23) Ex: Select sysdate, to_char(sysdate,’HH24’) from dual; Minutes Indicator: MI  Returns the minutes from the given date (0 – 59). Ex: Select sysdate, to_char(sysdate,’MI’), to_char(sysdate,’HH:MI’) from dual; Select Ename, sal, to_char(hiredate,’HH:MI’) from emp where job =’CLERK’; Suresh.n2008@gmail.com Page 61
  • 63. Nallapareddy Suresh Reddy Roman Month Indicator: RM  Returns the roman numerical month (I – XII). Ex: Select sysdate, to_char(sysdate,’RM’), to_char(sysdate,’DD-RM-YY’) from dual; Select ename, sal, to_char(hiredate,’DD-RM-YY’) From emp; Seconds Indicator: SS  Returns seconds from the given date (0 – 59). Ex: Select sysdate, to_char(sysdate,’SS’), to_char(sysdate,’HH:MI:SS’) from dual; Select sysdate, to_char(sysdate,’DD-MONTH-YYYY, HH:MI:SS A.M.’) from dual; Select ename, sal, hiredate, to_char(hiredate,’HH24:MI:SS’) from emp; Seconds Past Mid Night: SSSSS  Display seconds past midnight (0 – 86399). Ex: Select sysdate, to_char(sysdate,’SSSSS’) from dual; Date Format Punctuators:  The Punctuation marks that can be used in date formats are…  ‘-‘, ‘/’, ‘!’, ‘.’ , ‘;’, ‘:’, “text” Date Format Elements Suffixes: TH OR SP TH  Suffixes the Ordinal number with ‘ST’ or ‘ND’ or ‘RD’ or ‘TH’. Example: DDTH  20TH. Ex: Select sysdate, to_char(sysdate,’DDTH,MONTH,YYYY’) from dual; Select ename, sal, hiredate, to_char(hiredate,’DDTH,MONTH,YYYY’) from emp; Sp  Spells Ordinal Numbers. Suresh.n2008@gmail.com Page 62
  • 64. Nallapareddy Suresh Reddy Example: DDSP  TWENTY Select sysdate, to_char(sysdate,’DDSP, Month, YYY’) from dual; Select ename, sal, to_char(hiredate,’DDSP,Month,YYYY’) from emp; Select sysdate, to_char(sysdate,’DDSPTH, Month,YYYY’) from dual; Select ename, sal, to_char(hiredate,’DDSPTH, Month, YYYY’) from emp; Select sysdate, to_char(sysdate,’DDSPTH Month YYYYSP’) from dual; Date format Elements Restrictions:  The suffixes when added to date return values always in English.  Date suffixes are valid only on output, hence cannot be used to insert a date into the database. Format Model Modifiers: Fill Mode Indicator: FM  It suppresses blank padding in the return value of the to_char function. Format Exact: FX  It specifies exact matching for the character argument and date format model. Ex: Select sysdate, to_char(sysdate,’DDSPTH MONTH to_char(sysdate,’FMDDSPTH MONTH YYYYSP’) from dual; YYYYSP’), TO_NUBMER Function: Syntax: TO_NUBMER (char, fmt, ‘nlsparam’)  It converts a char, value of CHAR or varchar2 data type containing a number in the format specified by the optional format model ‘fmt’ to a value of number data type. Ex: Select ’$10,000.00’, to_number(’$10,000.00’,’L99,999.99’) from dual; Select ’$1,000.00’ to_number(’$1,0000.00’,’L9,999.99’) + 500 from dual; Suresh.n2008@gmail.com Page 63
  • 65. Nallapareddy Suresh Reddy TO_DATE Function: Syntax: TO_DATE(char, fmt, ‘nlsparam’)  Converts given char of CHAR or VARCHAR2 data type to a value of DATE data type.  The ‘fmt’ is an optional date format specifying the format of char. Ex: Select ename, hiredate, add_months(to_date(’17-DEC-1980’,’DD-MON-YY’),3) from emp where hiredate = ’17-DEC-1980’; Select ename, hiredate,add_months(to_date(’1980-DECEMBER-17’,’YYYY-MONTHDD’),3) from emp where hiredate = ’17-DEC-1980’; Select ename, hiredate, add_months(to_date(’1980-DECEMBER-17’,’YYYY-MONTHDD’),3) from emp where to_char(hiredate,’FMYYYY-MONTH-DD’) =’1980DECEMBER-17’); Select ’12-August-2007’,to_date(’12-August-2007’,’DD-Month-YYYY’) + 3 from dual; Let Us Revisit INSERT Statement Once Again: Working With Invalid Numbers: Ex: Create table sampins ( SampleNum number(6), SampleDate Date ); Insert into sampins(SampleNum,SampleDate) alues(to_number(’1,23,456’,’9G99G999’), sysdate); Insert into sampins(SampleNum, ‘,’9G99G999MI’),sysdate); Suresh.n2008@gmail.com SampleDate) values(to_number(’1,23,457- Page 64
  • 66. Nallapareddy Suresh Reddy Working With Invalid Dates: Ex: Insert into sampins(SampleNum, SampleDate) values(123458,’02-AUG-07’); Insert into sampins(SampleNum, SampleDate) values(123459,sysdate); Insert into Sampins(SampleNum, SampleDate) values(123460, to_date(’02-August2007,06:45:36 P.M.’,’DD-Month-YYYY,HH:MI:SS P.M.’); Spelling a Number: Ex: Select to_char(to_date(’&GiveNumber’,’J’),’JSP’) “splled number” from dual; Suresh.n2008@gmail.com Page 65
  • 67. Nallapareddy Suresh Reddy Group by, Grouping Functions and having clause Aggregate or Group Functions:  These functions return a single row based on groups of rows.  These functions can appear in select lists and having clauses only.  These functions operate on sets of rows to give one result per group.  The sets may be the whole table or the table split into groups. Guidelines to use group functions:  DISTINCT makes the function to consider only non-duplicate values.  ALL makes the function to consider every value including duplicates. Syntax: GroupFunctionName(distinct /all col)  The data types for arguments may be CHAR, VARCHAR2, NUMBER OR DATE.  All group functions except count (*) ignore NULL values. To substitute a value for NULL value, Use the NVL Function.  When a group function is declared in a select list, no single row columns should be declared.  When a group function is declared in a select list, other columns can be declared, but they should be grouped columns, and all the non-functional columns should be declared into group by clause. Average Function: Syntax: AVG (Distinct /All cols)  It Returns the AVERAGE value of column.  It ignores NULL values. Ex: Select avg(sal), avg(distinct sal) from emp; Suresh.n2008@gmail.com Page 66
  • 68. Nallapareddy Suresh Reddy Select avg(comm), avg(distinct comm) from emp; Sum Function: Syntax: Sum(distinct/all col)  It returns the sum value of column.  It ignores NULL values. Ex: Select sum(sal), sum(distinct sal) from emp; Select sum(comm), sum(distinct comm) from emp; Maximum Function: Syntax: Max(Distinct /All col)  It returns the maximum value of column.  It ignores NULL values. Ex: Select max(sal), max(distinct sal) from emp; Select Max(comm), max(distinct comm) from emp; Minimum Function: Syntax: Min(distinct / all col)  It returns the minimum value of the column.  It ignores NULL values. Ex: Select min(sal), min(distinct sal) from emp; Select min(Comm), min(distinct Comm) from emp; Standard Deviation Function: Syntax: STDDEV(distinct /All col)  It returns the standard deviation of the column. Suresh.n2008@gmail.com Page 67
  • 69. Nallapareddy Suresh Reddy  It ignores NULL values. Ex: Select stddev(sal), stddev(distinct sal) from emp; Select stddev(Comm), stddev(distinct Comm) from emp; Variance Function: Syntax: variance(distinct / All col)  It returns the variance of N.  It ignores the NULL values. Ex: Select variance(sal), variance(distinct sal) from emp; Select variance(Comm), variance(distinct variance) from emp; Count Function: Syntax: Count(*/Distinct/All col)  It returns the number of rows in the query.  It ‘*’ is used returns all rows, including duplicated and NULL’s.  It can be used to specify the count of all rows or only distinct values of col. Ex: Select count(*) from emp; Select count(job), count(distinct job) from emp; Select count(sal), count(Comm) from emp; Select count(empno), count(distinct MGR) from emp; Creating Groups of Data:  The group by clauses is used to decide the rows in a table into groups. Suresh.n2008@gmail.com Page 68
  • 70. Nallapareddy Suresh Reddy Syntax1: Select columnName1, columnName2,… From TableName where condition(s) group by columnNmae(s) Order by ColumnName(s); Syntax2: Select columnName1, GRP_FUN(Column) from TableName where Condition(s) Group by ColumnName(s) Order by Column(s); Guidelines to use Group by clause:  If the group function is included in a select clause, we should not use individual result columns.  The extra non group functional columns should be declared in the group by clause.  Using where clause, rows can be pre excluded before dividing them into groups.  Column aliases cannot be used in group by clause.  By default, rows are sorted by ascending order of the columns included in the group by list.  The column applied upon group by clause need not be part of select list. Ex: Select deptno from emp group by deptno; Select job from emp group by job; Select mgr from emp group by mgr; Select to_char(hiredate, ’YYYY’) yeargroup from emp group by to_char(hiredate, ’YYYY’); Select to_char(hiredate, ’Month’) Monthgroup from emp group by to_char(hiredate, ’Month’); Select to_char(hiredate, ’Month’) Monthgroup from emp where to_char(hiredate, ’Month’) <> ’September’ Group by to_char(hiredate, ’Month’); Creating Group wise summaries: Ex: Select deptno, avg(sal) from emp group by deptno; Suresh.n2008@gmail.com Page 69
  • 71. Nallapareddy Suresh Reddy Select deptno, avg(sal) from group by deptno order by avg(sal); Select deptno, min(sal), max(sal) from emp group by deptno, job; Note:  The above specification falls under the principle of groups within groups. Ex: Select deptno, min(sal), max(sal) from emp where job= ’CLERK’ Group by Deptno; Select deptno, sum(sal), avg(sal) from emp where job = ’CLERK’ Group by deptno; Excluding Groups of Results: Having Claus:  It is used to specify which groups are to be displayed.  The clause is used to filter data that is associated with group functions. Syntax: Select Column, Group_Function From Table [where condition(s)] [ Group by Group_by_expr] [Having Group_condition(s)] [Order by column_name / Alias ]; Steps Performs By Having Clause:  First the rows are grouped.  Second the group function is applied to the identified groups.  Third the groups that match the criteria in the having clause are displayed.  The having clause can precede group by clause, but it is more logical to declare it after group by clause.  Group by clause can be used, without a group functions in the select list.  If rows are restricted based on the result of a group function, we must have a group by clause as well as the having clause.  Existence of group by clause does not guarantee the existence of having clause, but the existence of having clause demands the existence of group by clause. Suresh.n2008@gmail.com Page 70
  • 72. Nallapareddy Suresh Reddy Ex: Select deptno, avg(sal) from emp group by deptno, having max(sal) > 2900; Select job, sum(sal) payroll from emp where job not like ’SALES%’ group by job having sum(sal) > 5000 order by sum(sal); Select Deptno, min(sal), max(sal) from emp where job=’CLERK’ group by deptno having min(sal) < 1000; Select depnto, sum(sal) from emp group by deptno having count(deptno) > 3; Select deptno, avg(sal), sum(sal), max(sal),min(sal) from emp group by deptno Having avg(sal) > 2500; Nesting of Group Functions:  Group Functions can be nested to a depth of two levels. Ex: Select max(avg(sal)) from emp group by deptno; Select max(sum(sal)), min(sum(sal)) from emp group by deptno; Select max(sum(sal)), min(avg(sal)) from emp group by job; Suresh.n2008@gmail.com Page 71
  • 73. Nallapareddy Suresh Reddy Integrity Constraints Constraints in data bases are used to define an integrity constraint, as a rule that restricts the values in a data base. Now we are discussing 5 types of constraints…  NOT NULL Constraint  UNIQUE Constraint  PRIMARY KEY Constraint  FOREIGN KEY Constraint  CHECK Constraint Declaration Style:  Column level (OR) IN LINE Style.  Table level (OR) OUT OF LINE Style. Column Level:  They are declared as part of the definition of an individual column or attribute.  Usually applied when the constraint is specific to that column only. Table Level:  They are declared as part of the table definition.  Definitely applied when the constraint is applied on combination of columns together. Note:  NOT NULL Constraint is the only constraint which should be declared as inline only.  Every constraint is managed by oracle with a constraint name in the Meta data.  Hence when we declare a constraint if we do not provide a constraint name oracle associates the constraint with name.  Within a single user no two constraints can have the same name. Suresh.n2008@gmail.com Page 72
  • 74. Nallapareddy Suresh Reddy  Rather than depending on the oracle supplied constraint name, it is better to define our own name for all constraints.  When constraints are named we should use ‘CONSTRAINT’ clause. The CONSTRAINT clause can appear in:  Create and Alter table statement.  Create and Alter view statement.  Oracle does not support constraints on columns or attributes whose data type is o USER_DEFINED OBJECTS. o NESTED TABLES and VARRAY o REF and LOB. NOT NULL constraint: Exceptions:  NOT NULL constraint is supported for an attribute whose data type is USER_DEFINED object, VARRAY, REF, LOB.  NOT NULL, FOREIGN KEY, and REF constraints are supported on a column of type REF.  NOT NULL Constraint:  A NOT NULL constraint prohibits a column from containing NULL values.  NOT NULL should be defined only at column level.  The default constraint if not specified is NULL constraint.  To satisfy the rule, every row in the table must contain a value for the column. Restrictions:  NULL or NOT NULL cannot be specified as view constraints.  NULL or NOT NULL cannot be specified for an attribute of an object. Syntax: Create Table <table_name> ( Suresh.n2008@gmail.com Page 73
  • 75. Nallapareddy Suresh Reddy Column_name1 <data type>(width) NOT NULL, Column_name2<data type>(width) Contraint consname NOT NULL, Column_nameN <data type>(width) ); Illustration: Create Table Students ( Studno number(6) CONSTRAINT StudnoNN NOT NULL, StudName varchar2(25) CONSTRAINT StudNameNN NOT NULL, CourseName varchar2(25) CONSTRAINT CourseNameNN NOT NULL, JoinDate Date NOT NULL ); UNIQUE Constraint:  The UNIQUE constraint designates a column as a UNIQUE Key.  A composite UNIQUE key designates a combination of column as the UNIQUE key.  A composite UNIQUE key is always declared at the table level.  To satisfy UNIQUE constraints, No two rows in the table can have the same value for the UNIQUE key.  UNIQUE key made up of a single column can contain NULL values.  Oracle creates an index implicitly on the UNIQUE key column. Suresh.n2008@gmail.com Page 74
  • 76. Nallapareddy Suresh Reddy Restrictions:  A table or view can have only one UNIQUE key column.  UNIQUE key cannot be implemented on columns having  LOB, LONG, LONG RAW, VARRAY, NESTED TABLE, OBJECT, BFILE, REF, TIMESTAMP WITH TIME ZONE.  A composite UNIQUE key cannot have more than 32 columns.  Same column or combination of columns cannot be designated as both primary key and UNIQUE key.  We cannot specify a UNIQUE key when creating a sub table or sub view in an inheritance hierarchy.  The UNIQUE key can be specified only for the top level (root) table or view. Syntax: Create Table <Table_Name> ( Column_Name1 <data type> (width) UNIQUE, Column_Name2 <data type> (width) CONSTRAINT ConsName UNIQUE, Column_NameN <data type> (width) ); Illustration: 1 Column Level Syntax: Create Table Promotions ( Promo_ID Number(6) CONSTRAINT PromoIDUNQ UNIQUE, PromoName varchar2(20), Suresh.n2008@gmail.com Page 75
  • 77. Nallapareddy Suresh Reddy PromoCategory varchar2(15), PromoCost Number(10,2), PromoBegDate Date, PromoEndDate Date, ); Illustration:2 Table Level Syntax: Create Table Promotions ( Promo_ID number(6), PromoName varchar2(20), PromoCategory varchar2(15), PromoCost number(10,2), PromoBegDate Date, PromoEndDate Date, CONSTRAINT PromoIDUNQ UNIQUE(Promo_ID) ); Illustration: 3 Composite UNIQUE Constraint Syntax: Create Table Warehouse ( WareHouseID number(6), WareHouseName varchar2(30), Area number(4), Docktype varchar2(50), Suresh.n2008@gmail.com Page 76
  • 78. Nallapareddy Suresh Reddy Wateraccess varchar2(10), Railaccess varchar2(10), Parking varchar2(10), Vclearance number(4), CONSTRAINT wareHouseUNQ UNIQUE(WareHouseID, WareHouseName) ); Illustration: 4 Create Table Students ( StudID number(6), CONSTRAINT StudIDUNQ UNIQUE, Fname varchar2(30), DOB Date, DOJ Date, EmailID varchar2(50) CONSTRAINT EmailIDUNQ UNIQUE ); PRIMARY KEY Constraint:  A Primary key constraint designates a column as the primary key of a table or view.  A composite primary key designates a combination of columns as the PRIMARY KEY.  When the constraint is declared at column level only PRIMARY KEY keyword is enough.  A composite PRIMARY KEY is always defined at table level only.  A PRIMARY KEY constraint combines a NOT NULL and UNIQUE constraint in one declaration. Suresh.n2008@gmail.com Page 77
  • 79. Nallapareddy Suresh Reddy Restrictions:  A Table or View can have only one Primary key.  Primary key cannot be implemented on columns having  LOB, LONG, LONG RAW, VARRAY, NESTED TABLE, OBJECT, BFILE, REF, TIMESTAMP WITH TIME ZONE.  A composite primary key cannot have more than 32 columns.  Same column or combination of columns cannot be designated as both primary key and UNIQUE key.  Primary key cannot be specified when creating a sub table or sub view in an inheritance hierarchy.  The Primary key can be specified only for the top level (root) table or view. Syntax: Create Table <Table_Name> ( Column_Name1 <data type> (width) CONSTRAINT ColNamePK PRIMARY KEY, Column_Name2 <data type> (width), Column_NameN <data type> (width) ); Illustration: 1 Column Level Syntax: Create Table Locations ( LocationID Number(4) Constraint LocIDPK Primary key, StAddress varchar2(40) NOT NULL, Suresh.n2008@gmail.com Page 78
  • 80. Nallapareddy Suresh Reddy PostalCode varchar2(6) Constraint PCNN NOT NULL, City varchar2(30) Constraint cityNN NOT NULL ); Illustration: 2 Table Level Syntax: Create Table Locations ( LocationID Number(4), StAddress varchar2(40) NOT NULL, PostalCode varchar2(6) Constraint PCNN NOT NULL, City varchar2(30) Constraint cityNN NOT NULL Constraint LocIdPK primary key(LocationID) ); Illustration: 2 Create Table SalesInfo ( SaleID Number(6), CustID Number(6), ProdID Number(6), Quantity Number(6) NOT NULL, SaleDate Date NOT NULL, Suresh.n2008@gmail.com Page 79
  • 81. Nallapareddy Suresh Reddy SaleDesc Long NOT NULL, Constraint ProdCustIDPK Primary key(SaleID,ProdID,CustID) ); FOREIGN KEY Constraint:  It designates a column as foreign key and establishes a relation between the foreign key and a specified primary key or UNIQUE key.  A composite foreign key designates a combination of columns as the foreign key.  The TABLE or VIEW containing the foreign key is called the child object.  The TABLE or VIEW containing the referenced key is called the parent object.  The corresponding column or columns of the foreign key and the referenced key must match in order and data type.  A foreign key constraint can be defined on a single key column either inline or out of line.  A composite foreign key on attributes should be declared at table level or out of line style.  We can designate the same column or combination of columns as both a foreign key and a primary or unique key.  A composite foreign key constraint must refer to a composite unique key or composite primary key in the parent table or view. Restrictions:  The foreign key columns cannot be applied on….  LOB, LONG, LONG RAW, VARRAY, NESTED TABLE, OBJECT, BFILE, REF, TIMESTAMP WITH TIME ZONE.  A composite foreign key cannot have more than 32 columns.  The child and parent tables must be on the same database. References clause:  The references clause should be used when the foreign key constraint is INLINE. Suresh.n2008@gmail.com Page 80
  • 82. Nallapareddy Suresh Reddy  When the constraint is out of line, we must specify the foreign key word. ON DELETE Clause:  The ON DELETE Clause determines how oracle automatically maintains referential integrity if the referenced primary or unique key value is removed from master table.  CASCADE Option can be specified if we want oracle to remove dependent foreign key values.  Specify SET NULL if we want Oracle to convert dependent foreign key values to null.  On DELETE Clause cannot be specified for a view constraint.  Declared on foreign key column only. Steps Followed for Creating Foreign key Constraint are as Follows: Step 1: Create Primary Master’s / Pure Master’s Create Table Dept ( Deptno Number(2) Constraint deptno_PK primary key, Dname varchar2(20) Constraint Dname_NN NOT NULL, Location varchar2(20) Constraint Loc_NN NOT NULL ); Step 2: Create Detailed / Child Table  These are tables which can contain primary key or their own as well as foreign key’s referring to other primary master’s or to themselves.  These Tables are also called as dependent tables or referential tables. Create Table Employee ( Suresh.n2008@gmail.com Page 81
  • 83. Nallapareddy Suresh Reddy EmployeeID Number(6) Constraint Emp_ID_PK primary key, Ename varchar2(30) Constraint Ename_NN NOT NULL, Designation varchar2(30) Constraint Desig_NN NOT NULL, ManagerID Number(6) Constraint Mgr_ID_FK_SELF Refrences Employee(EmployeeID) ON DELETE SET NULL, Hiredate Date Constraint hiredate_NN NOT NULL, Commission Number (7, 2), DeptID Number(2) Constraint DeptID_FK References Dept(Deptno) ON DELETE CASCADE ); Working With Composite Keys: Step 1: Create Pure Masters Create Table SampleMaster1 ( SampleID1 Number(4) Constraint SampID1PK primary key, SampName1 varchar2(20) Constraint SampName1NN NOT NULL, SampleDate1 Date Suresh.n2008@gmail.com Page 82