Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
39 views

SQL - Day 1: Structured Query Language

This document provides an introduction and overview of SQL and relational database concepts. It defines data and discusses how large amounts of data are collected and stored in databases. It introduces database management systems (DBMS) and relational database management systems (RDBMS) as tools for organizing data into tables and performing operations like create, read, update and delete (CRUD). Structured Query Language (SQL) is presented as the standard language for communicating with RDBMS and retrieving specific information from relational databases through queries.

Uploaded by

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

SQL - Day 1: Structured Query Language

This document provides an introduction and overview of SQL and relational database concepts. It defines data and discusses how large amounts of data are collected and stored in databases. It introduces database management systems (DBMS) and relational database management systems (RDBMS) as tools for organizing data into tables and performing operations like create, read, update and delete (CRUD). Structured Query Language (SQL) is presented as the standard language for communicating with RDBMS and retrieving specific information from relational databases through queries.

Uploaded by

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

Structured Query Language

SQL - Day 1

Agenda
 Data
 Data Base.
 Data Base Management System (DBMS).
 Relational Database RDBMS.
 Structured Query Language.

What is Data?
Data is a collection of facts, such as numbers, words, measurements,
observations or just descriptions of things.

Database Management System SQL Rooman Technologies


Date Is Huge Collection of
Information.
There are huge collections of data generated in a minute from various different
sources.

Where all this data is stored?


Well! All this data is stored in an area called as “Database”.

Database Management System SQL Rooman Technologies


What is DATA BASE?
 A database is an organized collection of
structured information, or data, typically
stored electronically in a computer system.

 A Database is a systematic collection of information.


 A Database is an arranged format of the data.
 A Database is an organized collection of information.

How these huge data is managed?


What is data managing?
Data can be Created

Data can be Read

Data can be Updated

Data can be Deleted

Whichever data is generated can be managed or can be performed with 4


operations i.e. CRUD(Create Read Update Delete) operation. Performing CRUD
operations on data is only data managing.

These huge data is managed by one of the system known as DBMS or Data
Base Management System.

Database Management System SQL Rooman Technologies


How this huge data is organized?
Database maintains “tabular format” to maintain the data in organized form.

Data generated in the source

Data stored in Database

Data is stored in table format inside the database. Tabular format or table
format contains rows and columns to store data in organized or structure
manner. The database which stores or manages the data in the form of rows and
columns or tabular form is known as “Relational Database Management”.

Advantage of storing data in tabular form.

1. The large mass of confusing data is easily reduced to reasonable form


that is understandable.
2. A table facilitates representation of even large amounts of data in an
attractive, easy to read, easy to access form.

Database Management System SQL Rooman Technologies


Data present inside the Relational Database Management is managed using the
system known as “Relational Database Management System or RDBMS.”

What is SQL?
SQL stands for Structured Query Language. SQL query language is a kind of
programming language that's designed to facilitate retrieving specific
information from relational databases.

Application RDBMS

Structured Query Language.

SQL is a query language which is used to communicate between the application


and the Relational Database Management System or RDBMS.

SQL is called as Structured Query Language because:

Structured: SQL deals with RDBMS, where RDBMS is a database System which
stores the data in structured form.

Query Language: SQL language uses queries to communicate with Database.

How this Query Language Looks Like?

TO BE CONTINUED…..

Database Management System SQL Rooman Technologies

You might also like