0% found this document useful (0 votes)
3 views

Oracle Database12c

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

Oracle Database12c

Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 198

Database

• A database is an organized collection of structured information, or


data, typically stored electronically in a computer system. A database
is usually controlled by a database management system (DBMS).

SQL
• SQL is Structured Query Language, which is a computer language for
storing, manipulating and retrieving data stored in a relational database.
• SQL is the standard language for Relational Database System. All the
Relational Database Management Systems (RDMS) like MySQL, MS Access,
Oracle, Sybase, Informix, Postgres and SQL Server use SQL as their standard
database language.
DAY 1

Retrieving Data
Using the SQL SELECT Statement
DAY 2

Restricting
and
Sorting Data
DAY 3

Part-1

SINGLE ROW
FUNCTIONS
DAY 3

Part-2

GROUP
FUNCTIONS
DAY 4

Part-1

GROUPING ROWS
DAY 4

Part-2

JOINS
SELECT employees.employee_id, employees.last_name,
employees.department_id, departments.department_id,
departments.department_name
FROM employees JOIN departments
ON (employees.department_id = departments.department_id);
DAY 5

Part-1

OUTER JOINS
DAY 5

Part-2

SET OPERATORS
DAY 6

SUBQUERY
DAY 7

DML STATEMENTS
DAY 8

DATA DEFINITION
LANGUAGE (DDL)
Datatype & Table Part-1
DAY 9

Data Definition
Language (DDL)
Table Part-2
DAY 9

DATA DEFINITION
LANGUAGE (DDL)
VIEW

You might also like