Social Icons

Press ESC to close

SQL Introduction

In this chapter of Oracle SQL Tutorial, we will get the overview of Oracle SQL and will know about its usages.


SQL stands for Structured Query Language.
SQL is a declarative language and is what is being used when statements such as SELECT, INSERT, UPDATE and DELETE are entered in a tool that communicates with the database.


RDBMS – Relational Database Management System
A database is an organized collection of information. A table is the basic unit of storage structure for most databases. It is made up of columns and rows that store data:

 Column 1Column 2Column 3Column4
Row 1datadatadatadata
Row 2datadatadatadata
Row 3datadatadatadata
Row 4datadatadatadata
Row 5datadatadatadata
RDBMS Example

To manage databases, you need a database management system (DBMS). A DBMS is a program that stores, retrieves, and modifies data in the database on request. A relational database management system (RDBMS) uses relations, or two-dimensional tables to store information.

Properties of relational database management systems include:
1. Ability to be accessed and modified by executing SQL statements
2. Contain collection of tables with no physical pointers
3. Uses a set of operators

SQL statements are usually entered through software that has the ability to communicate with the RDBMS. The statement is sent to the database and the data is displayed through the software