This tutorial provides an introduction to the Structured Query Language (SQL).

The Oracle tutorial covers fundamental and advanced concepts of Oracle for both beginners and professionals.

Oracle is a widely used relational database management system in enterprise applications.

Our tutorial includes all aspects of the Oracle database, We also provide Oracle interview questions to enhance your understanding of the Oracle database.


Introduction:

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


Lets dive deep into the Oracle SQL Tutorial and try to learn SQL.

Topics:

Categorized in:

SQL,