SQL and PL - SQL
SQL and PL - SQL
Don’t forget:
The key of Life is Knowledge
Oracle is the product of Oracle Corporation, the Oracle Corporation founded in 1977 and they
have released their first version 3.0 in 1981 than version 4.0 and so on and so forth now they
have latest version like Oracle Database 10G, 11G.
The Oracle Database based on Relational database management system (RDBMS), and having
different module like SQL (Structure Query language), PL SQL (Procedural Language Structure
Query language), Forms and Reports so all these four module will be studied in this course of
Database developer one by one.
To See the Catalog of the database we will use the above query.
SQL> set pagesize 300 SQL> set linesize 300 set pagesize and set line size are sql plus
Arithmetic
The above query will select ename, job, sal, and will add sal and comm and will alias with name
of total.
NVL (Null value): the nvl function is used to put any other value instead of a null value.
The above query is used for the subtraction of commission from salary.
SQL> select ename,job,sal*2 as bonus from emp;
NVL2 is also a function work the same like nvl but there is one variable more, for null and for
not null and as well as the null value column itself.
SQL> select ename, job, sal, comm, sal+nvl2 (comm, comm, 100) from EMP;
Where clause
The above query will select those employees whose salary is greater than 3000.
Will select the record of those employees whose salary is not equal to 800.
Will select all those employees whose salaries are equal to 800.
The above query will select those employees whose salary is less than 800.
BETWEEN AND
SQL> SELECT * FROM EMP WHERE SAL BETWEEN 800 AND 4000;
Like:
When we don’t know about one letter than we are using underscore (_) sign.
In operator is used for the avoidance of multiple or operator, & and will return when both the
condition becomes true and false even one condition become false while OR operator will return
true even one condition become true and false will both of them become false.
Or:
IN:
Is used for ordering the data in a table whether ascending or descending order.
Now descending order by default if we don’t specify it will make it in ascending order
To_char function:
This function is used to convert date or number into character data type.
Through this query we can select the currency sign with the amount.
The same like above query but before the amount the currency sign.
Will calculate the months and than will return the year.
2 trunc(months_between(sysdate,hiredate),0)/12 as year,
The above query will return the months, days, year between two dates.
day to the day given. SQL> select last day (sysdate) from dual;
Decode:
UNION OPERATOR:
2 UNION
2 UNION ALL
INTERSECT:
Is used for the intersection purpose of two table, and will take the common records of both table.
2 INTERSECT
2 MINUS
NUMBER FUNCTIONS:
SQL> SELECT SUM (SAL) FROM EMP;
SQL> SELECT SUM (SAL), MIN (SAL), MAX (SAL), AVG (SAL), COUNT (SAL)
FROM EMP;
Lecture#03
GROUP BY:
This clause is used with the secondary key column and it group the similar fields, preparing for
the aggregate function operation.
The above query will sum the salary according to the grouping of department numbers.
The above query will sum the salary according to the grouping of Jobs.
The above query will return the Maximum salary according to the department numbers.
2 having sum(sal)>8000;
2* having sum(sal)<8000
DEPTNO SUM(SAL)
---------- ----------
10 8750
20 10875
30 9400
300
29325
30 9400
300
20 10875 10
8750 doc
SALESMAN 5600
ENG 300
PRESIDENT 5000
MANAGER 8275
ANALYST 6000
11 rows selected.
Cube is the same like rollup but is show the summation at above portion.
JOB SUM(SAL)
--------- ----------
29325 ENG
300
doc
CLERK 4150
ANALYST 6000
MANAGER 8275
SALESMAN 5600
PRESIDENT 5000
Lecture#4
Joining
In some cases we need to retrieve data from more than one table, so in such situation we need to
join two or more than two tables, which in RDBMS are called Joining.
Inner Join:
For the inner join the association of primary key and foreign key is very important, and those
records from both the tables will be selected whose primary key and foreign key values match
each other.
2 where
3 emp.deptno=dept.deptno;
SQL> select emp.*, dept.* from EMP right outer join dept
On emp.deptno=dept.deptno;
2 on emp.deptno=dept.deptno;
Self joining:
2 WHERE E.EMPNO=EE.MGR;
1 SELECT EE.ENAME ||' '||'IS WORKING UNDER'||' '||E.ENAME FROM EMP E,EMP
EE
2* WHERE E.EMPNO=EE.MGR
3/
EE.ENAME||''||'ISWORKINGUNDER'||''||E.
--------------------------------------
Sub Query:
1* select * from emp where sal>(select sal from emp where ename='SMITH')
Will select all those employees whose salary is more than SMITH.
MAX(SAL)
----------
5000
Will select the name of the employee who is taking the maximum salary.
ENAME
----------
KING
Lecture#4
Is used for the manipulation in the records, insert is used to add a record, delete used to remove
an existing record, and update used to update an existing record.
Insert into emp (empno, ename, job, sal) values (5,'kamran','Doctor', 500)
SQL> commit;
Delete:
1 row deleted.
SQL> commit;
SQL> commit;
UPDATE
Used to update a record, and will update name to Rahman whose empno is 6.
SQL> commit;
SQL> rollback;
Lecture#6
Is used to perform the operation on the transaction whether you want to save them or want to
undo them for the saving the changes we use the Commit command and for the undo we use
rollback command.
SQL> Rollback;
SQL> commit;
SQL> rollback;
SQL> rollback;
Autocommit Command:
Lecture#7
Is used to define new data to the database schema, can be table, view, procedure, index,
synonym, sequence or trigger.
Creating Tables:
Table created.
Above query was for just flashbacking means to recover the table from the recycle bin of oracle.
The truncate clause is used to make a table empty from the data.
The above query is used to drop the fees column from stu table.
The above query is used for changing the data type of a column
SQL> create table teacher (tid numeric (3) constraints pk_1 primary key, name varchar2
(30) constraints uk_1 unique, sal numeric(3) constraints nn_1 not null);
The above query is used for the user defined constraints to see.
The above query will drop the pk_1 constraint from the teacher table.
Lecture#8
Views:
are the logical table used for the reporting and calculation purpose.
2 as
View created.
2 as
2 as
2 as
VIEW_NAME TEXT
------------------------------ --------------------------------------------------------------------------------
2 as
2 as
2 as
Sequence:
This object of the oracle database is used to generate the sequential number.
2 increment by 1
3 start with 15
4 maxvalue 100;
SEQ_1 1 100 1 N N 0 15
SQL> insert into emp(empno,ename,job) values(seq_1.nextval,'wali','Eng');
The above query is used to assign the value of sequence into the emp table.
The above query is used to see the current value of the sequence.
The above query is used to see the next value of the sequence.
2 increment by 1
3 start with 40
4 maxvalue 100
5 ;\
Synonym:
Used to give another name to an object, than the object can be access with different name.
So now z is another name for the EMP table, we can access the emp table with the z as well.
SQL> drop synonym z;
Example 2#
INDEX:
Through above query we create index for the sname column of stu table.
Lecture#9
Used for the controlling of the Data, in this category we create user, we grant privileges to user
and we revoke back the privileges from the user.
Creating User
Example 1#
Connected.
Create view, Create procedure privileges are used to give the rights for the creation of view
and procedure.
Select any privileges are used to grant selection on any table to a user.
Delete any privileges is used to give a user the right to delete a record from any table.
Update any privileges is used to give a user to update a record in any user table.
Insert any privileges is used to give a user to insert a record in any user table.
Drop any privileges is used to give a user to drop a table of any user.
Revoking privileges:
The revoke clause is used to take back the privileges from a user.
Take back the select privileges from the mansor on emp table.
Take back the create view and create procedure privileges from mansor.
Role:
Role is used to group the privileges into a package and than we can easily assign this role to a
user with the bundle of the privileges.
In the above query we have created a role with the name of manager.
Module 2
Lecture#10
Declaration of variables:
1 declare
2 a number;
3 b number;
4 res number;
5 begin
6 a:=3;
7 b:=6;
8 res:=a+b;
9 dbms_output.put_line(res);
10* end;
SQL> /
9
Values assignment to a variable at the time of declaration:
SQL> declare
2 a number:=7;
3 b number:=3;
4 begin
5 a:=a*b;
6 dbms_output.put_line(a);
7 end;
8 /
21
1 declare
2 a number; 3 b
number;
4 res number;
5 begin
6 a: =&no1; 7 b: =&no2;
8 res:=a+b;
9 dbms_output.put_line (res);
10* end;
SQL> /
Enter value for no1: 2
Enter value for no2: 3
5
Lecture#11
IF Condition
SQL> declare
2 a number; 3
b number;
4 begin
5 a:=&no1; 6 b:=&no2;
7 if (a>b) then
8 dbms_output.put_line('A is greater than b');
9 end if;
10 if (a<b) then
11 dbms_output.put_line('A is smaller than b');
12 end if;
13 if (a=b) then
14 dbms_output.put_line('a is equal to b');
15 end if;
16 end;
17 /
SQL> declare
2 a number; 3
b number;
4 res number;
5 sign varchar2(3);
6 begin
7 a:=&num1; 8 b:=&num2;
9 sign:='&symbol';
10 if (sign='+') then
11 res:=a+b;
12 dbms_output.put_line(res);
13 end if;
14 if (sign='-') then
15 res:=a-b;
16 dbms_output.put_line(res);
17 end if;
18 if(sign='*') then
19 res:=a*b;
20 dbms_output.put_line(res);
21 end if;
22 if (sign='/') then
23 res:=a/b;
24 dbms_output.put_line(res);
25 end if;
26 end;
27 /
1 declare
2 salary number;
3 begin
4 select sum(sal) into salary from emp;
5 dbms_output.put_line(salary);
6* end;
SQL> /
30224
SQL> declare
2 p_max number;
3 p_min number;
4 begin
5 select max(sal) into p_max from emp;
6 dbms_output.put_line('the max sal is ='||' '||p_max);
7 select min(sal) into p_min from emp;
8 dbms_output.put_line('the min sal is='||' '||p_min);
9 end;
10 /
1 declare
2 p_name varchar2(30);
3 begin
4 select ename into p_name from emp where empno=7902;
5 dbms_output.put_line(p_name);
6* end;
SQL> /
FORD
SQL> Declare
2 p_sum number;
SQL> /
Enter value for deptno: 30
9400
SQL> /
Enter value for deptno: 20
11675
SQL> declare
2 job_sal number;
3 begin
4 select sum(sal) into job_sal from emp where job='&job';
5 dbms_output.put_line(job_sal);
6 end;
7 /
Enter value for job: CLERK
4150
PL/SQL procedure successfully completed.
SQL> /
Enter value for job: MANAGER
8275
PL/SQL procedure successfully completed.
1 DECLARE
2 p_ename varchar2(30);
3 p_job varchar2(30);
4 p_sal number;
5 begin
6 select ename,job,sal into p_ename,p_job,p_sal from emp where ename='&name';
7 dbms_output.put_line(p_Ename||' '||p_job||' '||p_sal);
8* end;
SQL> /
1 declare
2 p_count number;
3 begin
4 select count(empno) into p_count from emp where deptno=&deptno;
5 dbms_output.put_line(p_count);
6* end;
SQL> /
Enter value for deptno: 20
7
PL/SQL procedure successfully completed.
SQL> /
Enter value for deptno: 30
6
PL/SQL procedure successfully completed.
The above program show us that how much employees work in one department.
%type:
SQL> declare
2 p_sal emp.sal%type;
3 begin
4 select sum(sal) into p_sal from emp;
5 dbms_output.put_line(p_sal);
6 end;
7 /
29424
PL/SQL procedure successfully completed.
SQL> declare
2 p_ename emp.ename%type;
3 p_job emp.job%type;
4 p_sal emp.sal%type;
5 begin
6 select ename,job,sal into p_ename,p_job,p_sal from emp where Ename='SMITH';
7 dbms_output.put_line(p_ename||p_job||p_sal);
8 end;
9 /
SMITHCLERK800
PL/SQL procedure successfully completed.
%Rowtype:
1 declare
2 p_all emp%rowtype;
3 begin
4 select * into p_all from emp where ename='&name';
5 dbms_output.put_line(p_all.empno||p_all.ename||p_all.job||p_all.sal);
6* end;
SQL> /
Lecture#13
Loops:
SQL> declare
2 begin
3 for a in 1...30 loop
4 dbms_output.put_line (a);
5 end loop;
6 end;
7/
SQL> declare
2 b number;
3 begin
4 b:=1;
5 for a in 1..19 loop
6 b:=b+2;
7 dbms_output.put_line(b);
8 end loop;
9 end;
10 /
SQL> declare
2 begin
3 for a in reverse 1..8 loop
4 dbms_output.put_line(a);
1 declare
2 begin
3 for a in 1..5 loop
4 for b in 1..6 loop
5 dbms_output.put_line(a||' '||b);
6 end loop;
7 end loop;
8* end;
SQL> /
Cursors:
SQL> declare
2 cursor dl is select * from emp;
3 begin
4 for i in dl loop
5 delete from emp where deptno=&deptno;
6 end loop;
7 end;
8 /
SQL> declare
2 cursor cur_for is select * from emp where sal>2000;
3 begin
4 for a in cur_for loop
5 dbms_output.put_line(a.empno||a.ename||a.job||a.sal);
6 end loop;
7 end;
8 /
SQL> declare
2 cursor cur_sel is select * from emp where job='MANAGER'; 3
begin
4 for i in cur_sel loop
5 dbms_output.put_line(i.empno||' '||i.ename||' '||i.job||' '||i.sal);
6 end loop;
7 end;
8 /
7566 JONES MANAGER 2975
7698 BLAKE MANAGER 2850
7782 CLARK MANAGER 2450
PL/SQL procedure successfully completed.
Lecture#14
Procedures:
Procedure is the set of instructions which can be call again and again after the creation and it Cannot
return a value like function and this is the difference between functions and procedures. SQL> create
or replace procedure p1
2 as
3 begin
4 dbms_output.put_line('Hi this is P1');
5 end;
6 /
Procedure created.
Call completed.
Procedure created.
Function created.
A
--------------------------------
Hi this is ali
Function created.
Calling
SQL> variable a number
SQL> execute: a: =fun_squ (5);
SQL> print a;
A
----------
25
SQL> /
Function created.
Lecture#16
Trigger
Trigger is the self-executing Block of instruction which will be automatically fired when the relevant
delete, update or insert operation occur.
Trigger created.
1 row deleted.
Trigger created.
SQL> ed
Wrote file afiedt.buf
Trigger created.
0 rows deleted.
Trigger created.
Before insertion Trigger for Stu table and this trigger will validate the data.
I am going to validate the fee column
Those fees should not be less than 300 and more than 5000
Trigger created.
Trigger created.
1 row created.
Package created.
Package created.