SlideShare a Scribd company logo
1 of 60
Download to read offline
Introduction to SQL
Structured Query
Beginners to Advance
Language
www.genial-code.com
Objectives
▪ Explore basic commands and functions
of SQL
▪ How to use SQL for data administration
(to create tables, indexes, and views)
▪ How to use SQL for data manipulation
(to add, modify, delete, and retrieve
data)
▪ How to use SQL to query a database to
extract useful information
2
Introduction
to SQL
▪ SQL functions fit into two broad
categories:
▪ Data definition language
▪ SQL includes commands to:
▪ Create database objects, such as
tables, indexes, and views
▪ Define access rights to those database
objects
▪ Data manipulation language
▪ Includes commands to insert, update,
delete, and retrieve data within database
tables
3
Introduction to
SQL
(continued)
▪ SQL is relatively easy to learn
▪ Basic command set has vocabulary of
less than 100 words
▪ Nonprocedural language
▪ American National Standards Institute
(ANSI) prescribes a standard SQL
▪ Several SQL dialects exist
4
Introduction to SQL (continued)
5
Introduction to SQL (continued)
6
Introductionto SQL (continued)
7
Data Definition
Commands
▪ Examine simple database model and
database tables that will form basis for
many SQL examples
▪ Understand data environment
8
The Database Model
9
Creating the
Database
▪ Following two tasks must be completed:
▪ Create database structure
▪ Create tables that will hold end-user data
▪ First task:
▪ RDBMS creates physical files that will
hold database
▪ Tends to differ substantially from one
RDBMS to another
10
The Database
Schema
▪ Authentication
▪ Process through which DBMS verifies that
only registered users are able to access
database
▪ Log on to RDBMS using user ID and
password created by database administrator
▪ Schema
▪ Group of database objects—such as tables
and indexes—that are related to each other
11
DataTypes
▪ Data type selection is usually dictated
by nature of data and by intended use
▪ Pay close attention to expected use of
attributes for sorting and data retrieval
purposes
12
DataTypes (continued)
13
CreatingTable
Structures
▪ Use one line per column (attribute)
definition
▪ Use spaces to line up attribute
characteristics and constraints
▪ Table and attribute names are
capitalized
▪ NOT NULL specification
▪ UNIQUE specification
14
CreatingTable
Structures
(continued)
▪ Primary key attributes contain both a
NOT NULL and a UNIQUE specification
▪ RDBMS will automatically enforce
referential integrity for foreign keys
▪ Command sequence ends with
semicolon
15
SQL
Constraints
▪ NOT NULL constraint
▪ Ensures that column does not accept
nulls
▪ UNIQUE constraint
▪ Ensures that all values in column are
unique
▪ DEFAULT constraint
▪ Assigns value to attribute when a new
row is added to table
▪ CHECK constraint
▪ Validates data when attribute value is
entered
16
SQL Indexes
▪ When primary key is declared, DBMS
automatically creates unique index
▪ Often need additional indexes
▪ Using CREATE INDEX command, SQL indexes
can be created on basis of any selected
attribute
▪ Composite index
▪ Index based on two or more attributes
▪ Often used to prevent data duplication
17
Data
Manipulation
Commands
▪ Adding table rows
▪ Saving table changes
▪ Listing table rows
▪ Updating table rows
▪ Restoring table contents
▪ Deleting table rows
▪ Inserting table rows with a select
subquery
18
AddingTable
Rows
▪ INSERT
▪ Used to enter data into table
▪ Syntax:
▪ INSERT INTO columnname
VALUES (value1,value2, … ,valuen);
19
AddingTable
Rows
(continued)
▪ When entering values, notice that:
▪ Row contents are entered between
parentheses
▪ Character and date values are entered
between apostrophes
▪ Numerical entries are not enclosed in
apostrophes
▪ Attribute entries are separated by
commas
▪ A value is required for each column
▪ Use NULL for unknown values
20
SavingTable
Changes
▪ Changes made to table contents are not
physically saved on disk until, one of the
following occurs:
▪ Database is closed
▪ Program is closed
▪ COMMIT command is used
▪ Syntax:
▪ COMMIT [WORK];
▪ Will permanently save any changes made
to any table in the database
21
ListingTable
Rows
▪ SELECT
▪ Used to list contents of table
▪ Syntax:
▪ SELECT columnlist
FROM tablename;
▪ Columnlist represents one or more
attributes, separated by commas
▪ Asterisk can be used as wildcard character
to list all attributes
22
Updating
Table Rows
▪ UPDATE
▪ Modify data in a table
▪ Syntax:
▪ UPDATE tablename
SET columnname = expression [,
columname = expression]
[WHERE conditionlist];
▪ If more than one attribute is to be
updated in row, separate corrections
with commas
23
Restoring
Table Contents
▪ ROLLBACK
▪ Used to restore database to its previous
condition
▪ Only applicable if COMMIT command has
not been used to permanently store changes
in database
▪ Syntax:
▪ ROLLBACK;
▪ COMMIT and ROLLBACK only work with data
manipulation commands that are used to add,
modify, or delete table rows
24
DeletingTable
Rows
▪ DELETE
▪ Deletes a table row
▪ Syntax:
▪ DELETE FROM tablename
[WHERE conditionlist ];
▪ WHERE condition is optional
▪ If WHERE condition is not specified, all
rows from specified table will be
deleted
25
InsertingTable
Rows with a
Select
Subquery
▪ INSERT
▪ Inserts multiple rows from another table
(source)
▪ Uses SELECT subquery
▪ Query that is embedded (or nested) inside
another query
▪ Executed first
▪ Syntax:
▪ INSERT INTO tablename SELECT columnlist
FROM tablename;
26
Selecting Rows
with
Conditional
Restrictions
▪ Select partial table contents by placing
restrictions on rows to be included in
output
▪ Add conditional restrictions to SELECT
statement, using WHERE clause
▪ Syntax:
▪ SELECT columnlist
FROM tablelist
[ WHERE conditionlist ] ;
27
Selecting Rows with
Conditional Restrictions (continued)
28
Selecting Rows with
Conditional Restrictions (continued)
29
Arithmetic
Operators:
The Rule of
Precedence
▪ Perform operations within parentheses
▪ Perform power operations
▪ Perform multiplications and divisions
▪ Perform additions and subtractions
30
Arithmetic Operators:
The Rule of Precedence (continued)
31
Special
Operators
▪ BETWEEN
▪ Used to check whether attribute value is
within a range
▪ IS NULL
▪ Used to check whether attribute value is
null
▪ LIKE
▪ Used to check whether attribute value
matches given string pattern
32
Special
Operators
(continued)
▪ IN
▪ Used to check whether attribute value
matches any value within a value list
▪ EXISTS
▪ Used to check if subquery returns any
rows
33
Advanced
Data Definition
Commands
▪ All changes in table structure are made
by using ALTER command
▪ Followed by keyword that produces
specific change
▪ Following three options are available:
▪ ADD
▪ MODIFY
▪ DROP
34
Changing a
Column’s Data
Type
▪ ALTER can be used to change data type
▪ Some RDBMSs (such as Oracle) do not
permit changes to data types unless
column to be changed is empty
35
Changing a
Column’s Data
Characteristics
▪ Use ALTER to change data
characteristics
▪ If column to be changed already
contains data, changes in column’s
characteristics are permitted if those
changes do not alter the data type
36
Adding a
Column
▪ Use ALTER to add column
▪ Do not include the NOT NULL clause for
new column
37
Dropping a
Column
▪ Use ALTER to drop column
▪ Some RDBMSs impose restrictions on the
deletion of an attribute
38
Advanced Data Updates
39
Copying Parts
ofTables
▪ SQL permits copying contents of
selected table columns so that the data
need not be reentered manually into
newly created table(s)
▪ First create the PART table structure
▪ Next add rows to new PART table using
PRODUCT table rows
40
Adding
Primary and
Foreign Key
Designations
▪ When table is copied, integrity rules do
not copy, so primary and foreign keys
need to be manually defined on new
table
▪ User ALTER TABLE command
▪ Syntax:
▪ ALTER TABLE tablename ADD
PRIMARY KEY(fieldname);
▪ For foreign key, use FOREIGN KEY in place
of PRIMARY KEY
41
Deleting a
Table from the
Database
▪ DROP
▪ Deletes table from database
▪ Syntax:
▪ DROP TABLE tablename;
42
Advanced
Select Queries
▪ SQL provides useful functions that can:
▪ Count
▪ Find minimum and maximum values
▪ Calculate averages
▪ SQL allows user to limit queries to only
those entries having no duplicates or
entries whose duplicates may be
grouped
43
Aggregate Functions
44
Aggregate Functions (continued)
45
Aggregate Functions (continued)
46
Aggregate Functions (continued)
47
Aggregate Functions (continued)
48
Grouping Data
49
Grouping Data (continued)
50
Grouping Data (continued)
51
VirtualTables:
Creating a
View
▪ View is virtual table based on SELECT
query
▪ Can contain columns, computed columns,
aliases, and aggregate functions from one
or more tables
▪ Base tables are tables on which view is
based
▪ Create view by using CREATE VIEW
command
52
VirtualTables:Creating aView (continued)
53
Joining
Database
Tables
▪ Ability to combine (join) tables on
common attributes is most important
distinction between relational database
and other databases
▪ Join is performed when data are
retrieved from more than one table at a
time
▪ Join is generally composed of an
equality comparison between foreign
key and primary key of related tables
54
JoiningTables
with an Alias
▪ Alias can be used to identify source
table
▪ Any legal table name can be used as
alias
▪ Add alias after table name in FROM
clause
▪ FROM tablename alias
55
Summary
▪ SQL commands can be divided into two
overall categories:
▪ Data definition language commands
▪ Data manipulation language commands
▪ The ANSI standard data types are
supported by all RDBMS vendors in
different ways
▪ Basic data definition commands allow
you to create tables, indexes, and views
56
Summary
(continued)
▪ DML commands allow you to add, modify, and
delete rows from tables
▪ The basic DML commands are SELECT,
INSERT, UPDATE, DELETE, COMMIT, and
ROLLBACK
▪ INSERT command is used to add new rows to
tables
▪ SELECT statement is main data retrieval
command in SQL
57
Summary
(continued)
▪ Many SQL constraints can be used with
columns
▪ The column list represents one or more
column names separated by commas
▪ WHERE clause can be used with
SELECT, UPDATE, and DELETE
statements to restrict rows affected by
the DDL command
58
Summary
(continued)
▪ Aggregate functions
▪ Special functions that perform arithmetic
computations over a set of rows
▪ ORDER BY clause
▪ Used to sort output of SELECT statement
▪ Can sort by one or more columns and use
either an ascending or descending order
▪ Join output of multiple tables with
SELECT statement
59
Summary
(continued)
▪ Natural join uses join condition to match
only rows with equal values in specified
columns
▪ Right outer join and left outer join used
to select rows that have no matching
values in other related table
60

More Related Content

Similar to Intruduction to SQL.Structured Query Language(SQL}

Introduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).pptIntroduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).ppt
Ashwini Rao
 
Introduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).pptIntroduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).ppt
Ashwini Rao
 
SQL.pptx for the begineers and good know
SQL.pptx for the begineers and good knowSQL.pptx for the begineers and good know
SQL.pptx for the begineers and good know
PavithSingh
 
SQL.pptx for the begineers and good know
SQL.pptx for the begineers and good knowSQL.pptx for the begineers and good know
SQL.pptx for the begineers and good know
PavithSingh
 

Similar to Intruduction to SQL.Structured Query Language(SQL} (20)

Introduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).pptIntroduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).ppt
 
Introduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).pptIntroduction to Structured Query Language (SQL).ppt
Introduction to Structured Query Language (SQL).ppt
 
Introduction to structured query language (sql)
Introduction to structured query language (sql)Introduction to structured query language (sql)
Introduction to structured query language (sql)
 
Introduction to structured query language (sql)
Introduction to structured query language (sql)Introduction to structured query language (sql)
Introduction to structured query language (sql)
 
Session 1 - Databases-JUNE 2023.pdf
Session 1 - Databases-JUNE 2023.pdfSession 1 - Databases-JUNE 2023.pdf
Session 1 - Databases-JUNE 2023.pdf
 
Session 1 - Databases-JUNE 2023.pdf
Session 1 - Databases-JUNE 2023.pdfSession 1 - Databases-JUNE 2023.pdf
Session 1 - Databases-JUNE 2023.pdf
 
Introduction to structured query language (sql) (1)
Introduction to structured query language (sql) (1)Introduction to structured query language (sql) (1)
Introduction to structured query language (sql) (1)
 
Introduction to structured query language (sql) (1)
Introduction to structured query language (sql) (1)Introduction to structured query language (sql) (1)
Introduction to structured query language (sql) (1)
 
SQL.pptx for the begineers and good know
SQL.pptx for the begineers and good knowSQL.pptx for the begineers and good know
SQL.pptx for the begineers and good know
 
SQL.pptx for the begineers and good know
SQL.pptx for the begineers and good knowSQL.pptx for the begineers and good know
SQL.pptx for the begineers and good know
 
MS SQL Server
MS SQL ServerMS SQL Server
MS SQL Server
 
MS SQL Server
MS SQL ServerMS SQL Server
MS SQL Server
 
Relational Database Language.pptx
Relational Database Language.pptxRelational Database Language.pptx
Relational Database Language.pptx
 
Relational Database Language.pptx
Relational Database Language.pptxRelational Database Language.pptx
Relational Database Language.pptx
 
2..basic queries.pptx
2..basic queries.pptx2..basic queries.pptx
2..basic queries.pptx
 
2..basic queries.pptx
2..basic queries.pptx2..basic queries.pptx
2..basic queries.pptx
 
MySQL Essential Training
MySQL Essential TrainingMySQL Essential Training
MySQL Essential Training
 
MySQL Essential Training
MySQL Essential TrainingMySQL Essential Training
MySQL Essential Training
 
Unit - II.pptx
Unit - II.pptxUnit - II.pptx
Unit - II.pptx
 
Unit - II.pptx
Unit - II.pptxUnit - II.pptx
Unit - II.pptx
 

More from IlgarKarimov3 (12)

COSHH Abbreviations.pdf
COSHH Abbreviations.pdfCOSHH Abbreviations.pdf
COSHH Abbreviations.pdf
 
Working at Height Presentation.pptx
Working at Height Presentation.pptxWorking at Height Presentation.pptx
Working at Height Presentation.pptx
 
1.A_and_D_Abuse.ppt
1.A_and_D_Abuse.ppt1.A_and_D_Abuse.ppt
1.A_and_D_Abuse.ppt
 
2.Substance_Abuse_1.ppt
2.Substance_Abuse_1.ppt2.Substance_Abuse_1.ppt
2.Substance_Abuse_1.ppt
 
3.alarmpresentation.ppt
3.alarmpresentation.ppt3.alarmpresentation.ppt
3.alarmpresentation.ppt
 
9.OneDrinkTooMany.ppt
9.OneDrinkTooMany.ppt9.OneDrinkTooMany.ppt
9.OneDrinkTooMany.ppt
 
Who Are We_ Global Lifting Serv - Barry.pdf
Who Are We_ Global Lifting Serv - Barry.pdfWho Are We_ Global Lifting Serv - Barry.pdf
Who Are We_ Global Lifting Serv - Barry.pdf
 
Slaid 1 - Admin.pdf
Slaid 1 - Admin.pdfSlaid 1 - Admin.pdf
Slaid 1 - Admin.pdf
 
Office Fire Warden_Eng_C01_08.01.19.pptx
Office Fire Warden_Eng_C01_08.01.19.pptxOffice Fire Warden_Eng_C01_08.01.19.pptx
Office Fire Warden_Eng_C01_08.01.19.pptx
 
Fire Marshal_ENG_rev1_16Dec14.ppt
Fire Marshal_ENG_rev1_16Dec14.pptFire Marshal_ENG_rev1_16Dec14.ppt
Fire Marshal_ENG_rev1_16Dec14.ppt
 
Fire watcher .pptx
Fire watcher .pptxFire watcher .pptx
Fire watcher .pptx
 
ARCO IRATA Manual 2019.pdf
ARCO IRATA Manual 2019.pdfARCO IRATA Manual 2019.pdf
ARCO IRATA Manual 2019.pdf
 

Recently uploaded

Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
Diya Sharma
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
sexy call girls service in goa
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
@Chandigarh #call #Girls 9053900678 @Call #Girls in @Punjab 9053900678
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 

Recently uploaded (20)

Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 

Intruduction to SQL.Structured Query Language(SQL}

  • 1. Introduction to SQL Structured Query Beginners to Advance Language www.genial-code.com
  • 2. Objectives ▪ Explore basic commands and functions of SQL ▪ How to use SQL for data administration (to create tables, indexes, and views) ▪ How to use SQL for data manipulation (to add, modify, delete, and retrieve data) ▪ How to use SQL to query a database to extract useful information 2
  • 3. Introduction to SQL ▪ SQL functions fit into two broad categories: ▪ Data definition language ▪ SQL includes commands to: ▪ Create database objects, such as tables, indexes, and views ▪ Define access rights to those database objects ▪ Data manipulation language ▪ Includes commands to insert, update, delete, and retrieve data within database tables 3
  • 4. Introduction to SQL (continued) ▪ SQL is relatively easy to learn ▪ Basic command set has vocabulary of less than 100 words ▪ Nonprocedural language ▪ American National Standards Institute (ANSI) prescribes a standard SQL ▪ Several SQL dialects exist 4
  • 5. Introduction to SQL (continued) 5
  • 6. Introduction to SQL (continued) 6
  • 8. Data Definition Commands ▪ Examine simple database model and database tables that will form basis for many SQL examples ▪ Understand data environment 8
  • 10. Creating the Database ▪ Following two tasks must be completed: ▪ Create database structure ▪ Create tables that will hold end-user data ▪ First task: ▪ RDBMS creates physical files that will hold database ▪ Tends to differ substantially from one RDBMS to another 10
  • 11. The Database Schema ▪ Authentication ▪ Process through which DBMS verifies that only registered users are able to access database ▪ Log on to RDBMS using user ID and password created by database administrator ▪ Schema ▪ Group of database objects—such as tables and indexes—that are related to each other 11
  • 12. DataTypes ▪ Data type selection is usually dictated by nature of data and by intended use ▪ Pay close attention to expected use of attributes for sorting and data retrieval purposes 12
  • 14. CreatingTable Structures ▪ Use one line per column (attribute) definition ▪ Use spaces to line up attribute characteristics and constraints ▪ Table and attribute names are capitalized ▪ NOT NULL specification ▪ UNIQUE specification 14
  • 15. CreatingTable Structures (continued) ▪ Primary key attributes contain both a NOT NULL and a UNIQUE specification ▪ RDBMS will automatically enforce referential integrity for foreign keys ▪ Command sequence ends with semicolon 15
  • 16. SQL Constraints ▪ NOT NULL constraint ▪ Ensures that column does not accept nulls ▪ UNIQUE constraint ▪ Ensures that all values in column are unique ▪ DEFAULT constraint ▪ Assigns value to attribute when a new row is added to table ▪ CHECK constraint ▪ Validates data when attribute value is entered 16
  • 17. SQL Indexes ▪ When primary key is declared, DBMS automatically creates unique index ▪ Often need additional indexes ▪ Using CREATE INDEX command, SQL indexes can be created on basis of any selected attribute ▪ Composite index ▪ Index based on two or more attributes ▪ Often used to prevent data duplication 17
  • 18. Data Manipulation Commands ▪ Adding table rows ▪ Saving table changes ▪ Listing table rows ▪ Updating table rows ▪ Restoring table contents ▪ Deleting table rows ▪ Inserting table rows with a select subquery 18
  • 19. AddingTable Rows ▪ INSERT ▪ Used to enter data into table ▪ Syntax: ▪ INSERT INTO columnname VALUES (value1,value2, … ,valuen); 19
  • 20. AddingTable Rows (continued) ▪ When entering values, notice that: ▪ Row contents are entered between parentheses ▪ Character and date values are entered between apostrophes ▪ Numerical entries are not enclosed in apostrophes ▪ Attribute entries are separated by commas ▪ A value is required for each column ▪ Use NULL for unknown values 20
  • 21. SavingTable Changes ▪ Changes made to table contents are not physically saved on disk until, one of the following occurs: ▪ Database is closed ▪ Program is closed ▪ COMMIT command is used ▪ Syntax: ▪ COMMIT [WORK]; ▪ Will permanently save any changes made to any table in the database 21
  • 22. ListingTable Rows ▪ SELECT ▪ Used to list contents of table ▪ Syntax: ▪ SELECT columnlist FROM tablename; ▪ Columnlist represents one or more attributes, separated by commas ▪ Asterisk can be used as wildcard character to list all attributes 22
  • 23. Updating Table Rows ▪ UPDATE ▪ Modify data in a table ▪ Syntax: ▪ UPDATE tablename SET columnname = expression [, columname = expression] [WHERE conditionlist]; ▪ If more than one attribute is to be updated in row, separate corrections with commas 23
  • 24. Restoring Table Contents ▪ ROLLBACK ▪ Used to restore database to its previous condition ▪ Only applicable if COMMIT command has not been used to permanently store changes in database ▪ Syntax: ▪ ROLLBACK; ▪ COMMIT and ROLLBACK only work with data manipulation commands that are used to add, modify, or delete table rows 24
  • 25. DeletingTable Rows ▪ DELETE ▪ Deletes a table row ▪ Syntax: ▪ DELETE FROM tablename [WHERE conditionlist ]; ▪ WHERE condition is optional ▪ If WHERE condition is not specified, all rows from specified table will be deleted 25
  • 26. InsertingTable Rows with a Select Subquery ▪ INSERT ▪ Inserts multiple rows from another table (source) ▪ Uses SELECT subquery ▪ Query that is embedded (or nested) inside another query ▪ Executed first ▪ Syntax: ▪ INSERT INTO tablename SELECT columnlist FROM tablename; 26
  • 27. Selecting Rows with Conditional Restrictions ▪ Select partial table contents by placing restrictions on rows to be included in output ▪ Add conditional restrictions to SELECT statement, using WHERE clause ▪ Syntax: ▪ SELECT columnlist FROM tablelist [ WHERE conditionlist ] ; 27
  • 28. Selecting Rows with Conditional Restrictions (continued) 28
  • 29. Selecting Rows with Conditional Restrictions (continued) 29
  • 30. Arithmetic Operators: The Rule of Precedence ▪ Perform operations within parentheses ▪ Perform power operations ▪ Perform multiplications and divisions ▪ Perform additions and subtractions 30
  • 31. Arithmetic Operators: The Rule of Precedence (continued) 31
  • 32. Special Operators ▪ BETWEEN ▪ Used to check whether attribute value is within a range ▪ IS NULL ▪ Used to check whether attribute value is null ▪ LIKE ▪ Used to check whether attribute value matches given string pattern 32
  • 33. Special Operators (continued) ▪ IN ▪ Used to check whether attribute value matches any value within a value list ▪ EXISTS ▪ Used to check if subquery returns any rows 33
  • 34. Advanced Data Definition Commands ▪ All changes in table structure are made by using ALTER command ▪ Followed by keyword that produces specific change ▪ Following three options are available: ▪ ADD ▪ MODIFY ▪ DROP 34
  • 35. Changing a Column’s Data Type ▪ ALTER can be used to change data type ▪ Some RDBMSs (such as Oracle) do not permit changes to data types unless column to be changed is empty 35
  • 36. Changing a Column’s Data Characteristics ▪ Use ALTER to change data characteristics ▪ If column to be changed already contains data, changes in column’s characteristics are permitted if those changes do not alter the data type 36
  • 37. Adding a Column ▪ Use ALTER to add column ▪ Do not include the NOT NULL clause for new column 37
  • 38. Dropping a Column ▪ Use ALTER to drop column ▪ Some RDBMSs impose restrictions on the deletion of an attribute 38
  • 40. Copying Parts ofTables ▪ SQL permits copying contents of selected table columns so that the data need not be reentered manually into newly created table(s) ▪ First create the PART table structure ▪ Next add rows to new PART table using PRODUCT table rows 40
  • 41. Adding Primary and Foreign Key Designations ▪ When table is copied, integrity rules do not copy, so primary and foreign keys need to be manually defined on new table ▪ User ALTER TABLE command ▪ Syntax: ▪ ALTER TABLE tablename ADD PRIMARY KEY(fieldname); ▪ For foreign key, use FOREIGN KEY in place of PRIMARY KEY 41
  • 42. Deleting a Table from the Database ▪ DROP ▪ Deletes table from database ▪ Syntax: ▪ DROP TABLE tablename; 42
  • 43. Advanced Select Queries ▪ SQL provides useful functions that can: ▪ Count ▪ Find minimum and maximum values ▪ Calculate averages ▪ SQL allows user to limit queries to only those entries having no duplicates or entries whose duplicates may be grouped 43
  • 52. VirtualTables: Creating a View ▪ View is virtual table based on SELECT query ▪ Can contain columns, computed columns, aliases, and aggregate functions from one or more tables ▪ Base tables are tables on which view is based ▪ Create view by using CREATE VIEW command 52
  • 54. Joining Database Tables ▪ Ability to combine (join) tables on common attributes is most important distinction between relational database and other databases ▪ Join is performed when data are retrieved from more than one table at a time ▪ Join is generally composed of an equality comparison between foreign key and primary key of related tables 54
  • 55. JoiningTables with an Alias ▪ Alias can be used to identify source table ▪ Any legal table name can be used as alias ▪ Add alias after table name in FROM clause ▪ FROM tablename alias 55
  • 56. Summary ▪ SQL commands can be divided into two overall categories: ▪ Data definition language commands ▪ Data manipulation language commands ▪ The ANSI standard data types are supported by all RDBMS vendors in different ways ▪ Basic data definition commands allow you to create tables, indexes, and views 56
  • 57. Summary (continued) ▪ DML commands allow you to add, modify, and delete rows from tables ▪ The basic DML commands are SELECT, INSERT, UPDATE, DELETE, COMMIT, and ROLLBACK ▪ INSERT command is used to add new rows to tables ▪ SELECT statement is main data retrieval command in SQL 57
  • 58. Summary (continued) ▪ Many SQL constraints can be used with columns ▪ The column list represents one or more column names separated by commas ▪ WHERE clause can be used with SELECT, UPDATE, and DELETE statements to restrict rows affected by the DDL command 58
  • 59. Summary (continued) ▪ Aggregate functions ▪ Special functions that perform arithmetic computations over a set of rows ▪ ORDER BY clause ▪ Used to sort output of SELECT statement ▪ Can sort by one or more columns and use either an ascending or descending order ▪ Join output of multiple tables with SELECT statement 59
  • 60. Summary (continued) ▪ Natural join uses join condition to match only rows with equal values in specified columns ▪ Right outer join and left outer join used to select rows that have no matching values in other related table 60