Dbms
Dbms
CERTIFICATE
“…………………………………………………………………………………………………………………………………………..”
Submitted by
Mr/Ms…………………………………………………………………………………………………………………………………
1
MAHARASHTRA STATE BOARD OF TECHNICAL EDUCATION MUMBAI
CERTIFICATE
system (22319) for the academic year 2023- 2024 as prescribed in the curriculum.
2
ACKNOWLEDGEMENT
It gives us a great sense of pleasure to present the report of the Project Work. We would like
to express our special thanks of gratitude to our Project Guide Mr. S. D. Pore sir for guiding
and correcting various mistakes of us with attention and care. We also do not like to miss the
opportunity to acknowledge the contribution of all faculty members of the department for
their kind assistance and cooperation during the development of our project. Last but not the
least, we acknowledge our friends for their contribution in the completion of the project.
3
ACTION PLAN
Sr no. Details of activity Plan start date Plan finish date Responsible team members
4
INDEX
1. Introduction 6
2. Program code 7
3. Output 8
4. Conclusion
5. Reference
5
INTRODUCTION
PL / SQL INTRODUCTION :-
PL/SQL is a block structured language that enables developers to combine the power of
SQL with procedural statements. All the statements of a block are passed to oracle engine
all at once which increases processing speed and decreases the traffic.
PL/SQL stands for Procedural Language extensions to the Structured Query Language.
6
PROGRAM CODE
E_name varchar2(50) ,
E_sal number ,
E_dept varchar2(50) ,
E_address varchar2(50) );
insert into employee values (105, ' Aakanksha ',30000, 'Administration', 'Latur');
DECLARE
E_name VARCHAR2(50);
BEGIN
SELECT Word INTO E_name FROM Words WHERE Word LIKE '_A%';
7
OUTPUT
Employee table :-
8
CONCLUSION
In conclusion we came to know that the PL/ SQL stored procedures are a single unit that
contains the business logic written inside it and which can also involve multiple data
manipulation and retrieval of database values in its statements. And we also learned to use
pattern matching operator ‘like’ in PL/SQL programs.
9
REFERENCE
Websites like
www.geeksforgeeks.com
www.wikipedia.com
www.google.com
10