SlideShare ist ein Scribd-Unternehmen logo
1 von 41
SQL for Software Testing
What is SQL?

 SQL stands for Structured Query Language
 SQL lets you access and manipulate databases
 SQL is an ANSI Standard

ANSI: American National Standards Institute
Why we use SQL?
   SQL can execute queries against a database
   SQL can retrieve data from a database
   SQL can insert records in a database
   SQL can update records in a database
   SQL can delete records from a database
   SQL can create new databases
   SQL can create new tables in a database
   SQL can create stored procedures in a database
   SQL can create views in a database
   SQL can set permissions on tables, procedures, and views
What is RDBMS?
RDBMS: Relational Database Management System
*Software that stores and manipulates data arranged in relational database tables.

Common RDBMS that use SQL are:

   Oracle
   Sybase
   Microsoft SQL Server
   Access
DDL
Data Definition Language (DDL) statements are
used to define the database structure or schema.

   CREATE - To create objects in the database
   ALTER - Alters the structure of the database
   DROP - Delete objects from the database
   TRUNCATE - Remove all records from a table,
    including all spaces allocated for the records
    are removed
DML
Data Manipulation Language (DML) statements
are used for managing data within schema
objects.

   SELECT - retrieve data from the a database
   INSERT - insert data into a table
   UPDATE - updates existing data within a table
   DELETE - deletes all records from a table, the
    space for the records remain
SQL Arithmetic Operators
Operator   Description                             Example
+          Addition - Adds values on either side   a+b
           of the operator
-          Subtraction - Subtracts right hand      a–b
           operand from left hand operand

*          Multiplication - Multiplies values on   a*b
           either side of the operator

/          Division - Divides left hand operand by b / a
           right hand operand

%          Modulus - Divides left hand operand     b%a
           by right hand operand and returns
           remainder
SQL Comparison Operators
Operator                                  Description                                                   Example

=          Checks if the value of two operands are equal or not, if yes then            (a = b) is not true.
           condition becomes true.

!=         Checks if the value of two operands are equal or not, if values are not      (a != b) is true.
           equal then condition becomes true.

<>         Checks if the value of two operands are equal or not, if values are not      (a <> b) is true.
           equal then condition becomes true.

>          Checks if the value of left operand is greater than the value of right       (a > b) is not true.
           operand, if yes then condition becomes true.

<          Checks if the value of left operand is less than the value of right          (a < b) is true.
           operand, if yes then condition becomes true.

>=         Checks if the value of left operand is greater than or equal to the value    (a >= b) is not true.
           of right operand, if yes then condition becomes true.

<=         Checks if the value of left operand is less than or equal to the value of    (a <= b) is true.
           right operand, if yes then condition becomes true.

!<         Checks if the value of left operand is not less than the value of right      (a !< b) is false.
           operand, if yes then condition becomes true.

!>         Checks if the value of left operand is not greater than the value of right   (a !> b) is true.
           operand, if yes then condition becomes true.
SQL Logical Operators
     Operator                                  Description
AND             The AND operator allows the existence of multiple conditions in an SQL
                statement's WHERE clause.
BETWEEN         The BETWEEN operator is used to search for values that are within a set
                of values, given the minimum value and the maximum value.
IN              The IN operator is used to compare a value to a list of literal values that
                have been specified.
LIKE            The LIKE operator is used to compare a value to similar values using
                wildcard operators.
NOT             The NOT operator reverses the meaning of the logical operator with
                which it is used. Eg. NOT EXISTS, NOT BETWEEN, NOT IN etc. This is
                negate operator.
OR              The OR operator is used to combine multiple conditions in an SQL
                statement's WHERE clause.
IS NULL         The NULL operator is used to retrieve NULL values
What is a Table?
Table – A set of data arranged in columns and rows. The columns represent
characteristics of stored data and the rows represent actual data entries.

In the below table called “employee_table” we see that the columns are:
First_Name, Last_Name, Email, DOB and Phone and rows are the data.

employee_table

First_Name   Last_Name   Email                   DOB            Phone
John         Smith       John.Smith@yahoo.com 2/4/1968          222 222-2222
Steven       Goldfish    goldfish@gmail.com      4/4/1974       999 455-4545
Paula        Brown       pb@hotmail.com          5/24/1978      777 323-3232
James        Smith       jim@ymail.com           20/10/1980     666 323-8888
Select Statement
  First_Name   Last_Name    Email                   DOB          Phone
  John         Smith        John.Smith@yahoo.com 2/4/1968        222 222-2222
  Steven       Goldfish     goldfish@gmail.com      4/4/1974     999 455-4545
  Paula        Brown        pb@hotmail.com          5/24/1978    777 323-3232
  James        Smith        jim@ymail.com           20/10/1980   666 323-8888


 Select * from employee_table
- All the columns in the employee_table are retrieved.


 Select First_Name, Last_Name from employee_table
- Only First_Name and Last_Name columns in the employee_table are retrieved.
Distinct Statement
 First_Name    Last_Name   Email                DOB          Phone
 John          Smith       John.Smith@yahoo.com 2/4/1968     222 222-2222
 Steven        Goldfish    goldfish@gmail.com   4/4/1974     999 455-4545
 Paula         Brown       pb@hotmail.com       5/24/1978    777 323-3232
 James         Smith       jim@ymail.com        20/10/1980   666 323-8888


 Select Distinct Last_Name from employee_table
    LastName
    Smith
    Goldfish
    Brown
Where Statement
 First_Name   Last_Name   Email                 DOB          Phone
 John         Smith       John.Smith@yahoo.com 2/4/1968      777 222-2222
 Steven       Goldfish    goldfish@gmail.com    4/4/1974     999 455-4545
 Paula        Brown       pb@hotmail.com        5/24/1978    777 323-8888
 James        Smith       jim@ymail.com         20/10/1980   666 323-8888


 Select * from employee_table
  where Last_Name= “Smith”
                          John.Smith@yahoo.co
 John         Smith                             2/4/1968     222 222-2222
                          m
 James        Smith       jim@ymail.com         20/10/1980   666 323-8888
Where Statement Examples:
<>, >, >=, <, =<, Like, Wildcard and Between
  SELECT *                     SELECT *
  FROM employee_table          FROM employee_table
  WHERE Last_Name <> 'Smith'   WHERE DOB =< ‘20/10/1980'
  SELECT *                     SELECT *
  FROM employee_table          FROM employee_table
  WHERE DOB > ‘20/10/1980'     WHERE Phone LIKE ’777%’

  SELECT *                     SELECT *
  FROM employee_table          FROM employee_table
  WHERE DOB >= ‘20/10/1980'    WHERE DOB BETWEEN ‘20/10/1980' AND
                               ‘20/10/1990'
  SELECT *
  FROM employee_table
  WHERE DOB < ‘20/10/1980'
Update Statement
First_Name       Last_Name   Email                    DOB            Phone
John             Smith       John.Smith@yahoo.com 2/4/1968           222 222-2222
Steven           Goldfish    goldfish@gmail.com       4/4/1974       999 455-4545
Paula            Brown       pb@hotmail.com           5/24/1978      777 323-3232
James            Smith       jim@ymail.com            20/10/1980     666 323-8888


                 UPDATE employee_table
                  SET DOB = '5/10/1974'
                  WHERE Last_Name = 'Goldfish' AND First_Name = 'Steven’

                 UPDATE employee_table
                  SET Phone = '626 555-5555'
                  WHERE Last_Name = 'Smith'
Delete Statement
First_Name    Last_Name   Email                DOB          Phone
John          Smith       John.Smith@yahoo.com 2/4/1968     222 222-2222
Steven        Goldfish    goldfish@gmail.com   4/4/1974     999 455-4545
Paula         Brown       pb@hotmail.com       5/24/1978    777 323-3232
James         Smith       jim@ymail.com        20/10/1980   666 323-8888


            DELETE FROM employee_table

            DELETE FROM employee_table
             WHERE Last_Name = 'Smith'
IN Statement




 SELECT * FROM Employee_Hours
  WHERE Date IN ('5/6/2004', '5/7/2004')

 SELECT * FROM Employee_Hours
  WHERE Hours IN (‘9’, ’10’)
Not IN Statement




 SELECT * FROM Employee_Hours
  WHERE Date NOT IN ('5/6/2004', '5/7/2004')

 SELECT * FROM Employee_Hours
  WHERE Hours NOT IN (‘9’, ’10’)
AND/ OR Operator
First_Name     Last_Name     Email                    DOB            Phone
John           Smith         John.Smith@yahoo.com 2/4/1968           222 222-2222
Steven         Goldfish      goldfish@gmail.com       4/4/1974       999 455-4545
Paula          Brown         pb@hotmail.com           5/24/1978      777 323-3232
James          Smith         jim@ymail.com            20/10/1980     666 323-8888



          SELECT * FROM Employee_table
           WHERE First_Name = ‘’John ’’ and Last_Name = ‘’ Smith’’

          SELECT * FROM Employee_table
           WHERE First_Name= ‘’Paula’’ or First_Name= ‘’James’’
TOP Statement
First_Name    Last_Name    Email                  DOB          Phone
John          Smith        John.Smith@yahoo.com 2/4/1968       222 222-2222
Steven        Goldfish     goldfish@gmail.com     4/4/1974     999 455-4545
Paula         Brown        pb@hotmail.com         5/24/1978    777 323-3232
James         Smith        jim@ymail.com          20/10/1980   666 323-8888



          SELECT TOP 10 * FROM Employee_table

          SELECT TOP 200 * FROM Employee_table
Insert Into Statement
  INSERT INTO employee_table (FirstName, LastName, Email, DOB, Phone)
   VALUES ('Peter', 'Hunt', 'peter.hunt@gmail.com', '1/1/1974', '626 888-8888’)

First_Name   Last_Name      Email                     DOB             Phone
John         Smith          John.Smith@yahoo.com 2/4/1968             222 222-2222
Steven       Goldfish       goldfish@gmail.com        4/4/1974        999 455-4545
Paula        Brown          pb@hotmail.com            5/24/1978       777 323-3232
James        Smith          jim@ymail.com             20/10/1980      666 323-8888
Peter        Hunt           Peter.hunt@gmail.com      1/1/1974        626 888-8888

  INSERT INTO employee_table
   VALUES ('Peter', 'Hunt', 'peter.hunt@gmail.com', '1/1/1974', '626 888-8888')
  INSERT INTO employee_table (FirstName, LastName)
   VALUES ('Peter', 'Hunt')
Select Into Statement
  SELECT FirstName, LastName
   INTO employee_table_name_backup
   FROM employee_table

First_Name   Last_Name   Email                  DOB          Phone
John         Smith       John.Smith@yahoo.com 2/4/1968       222 222-2222
Steven       Goldfish    goldfish@gmail.com     4/4/1974     999 455-4545
Paula        Brown       pb@hotmail.com         5/24/1978    777 323-3232
James        Smith       jim@ymail.com          20/10/1980   666 323-8888
Peter        Hunt        Peter.hunt@gmail.com   1/1/1974     626 888-8888
  SELECT *
   INTO employee_table_copy
   FROM employee_table
Count Statement
First_Name   Last_Name   Email                  DOB          Phone
John         Smith       John.Smith@yahoo.com 2/4/1968       222 222-2222
Steven       Goldfish    goldfish@gmail.com     4/4/1974     999 455-4545
Paula        Brown       pb@hotmail.com         5/24/1978    777 323-3232
James        Smith       jim@ymail.com          20/10/1980   666 323-8888
Peter        Hunt        Peter.hunt@gmail.com   1/1/1974     626 888-8888


  SELECT COUNT(*)
   FROM employee_table

  SELECT COUNT (First_Name)
   FROM employee_table
As Statement
First_Name   Last_Name   Email                  DOB          Phone
John         Smith       John.Smith@yahoo.com 2/4/1968       222 222-2222
Steven       Goldfish    goldfish@gmail.com     4/4/1974     999 455-4545
Paula        Brown       pb@hotmail.com         5/24/1978    777 323-3232
James        Smith       jim@ymail.com          20/10/1980   666 323-8888
Peter        Hunt        Peter.hunt@gmail.com   1/1/1974     626 888-8888


  SELECT Last_Name AS “EMP_LNAME”, Phone AS “Emergency_Contact”
   FROM employee_table

  SELECT COUNT (First_Name) AS “Number_of_employees”
   FROM employee_table
Order By Statement
First_Name   Last_Name   Email                  DOB          Phone
John         Smith       John.Smith@yahoo.com 2/4/1968       222 222-2222
Steven       Goldfish    goldfish@gmail.com     4/4/1974     999 455-4545
Paula        Brown       pb@hotmail.com         5/24/1978    777 323-3232
James        Smith       jim@ymail.com          20/10/1980   666 323-8888
Peter        Hunt        peter.hunt@gmail.com   1/1/1974     626 888-8888

  SELECT * FROM employee_table
   ORDER BY DOB
  SELECT * FROM employee_table
   ORDER BY DOB DESC
  SELECT * FROM employee_table
   ORDER BY DOB ASC
  SELECT * FROM employee_table
   ORDER BY DOB, Last_Name
MAX Function




 SELECT MAX(SaleAmount) As MAX_Sales
  FROM Sales
MIN Function




 SELECT Min(SaleAmount) As MIN_Sales
  FROM Sales
AVG Function




 SELECT AVG(SaleAmount) As AVG_Sales
  FROM Sales
SUM Function




 SELECT SUM(SaleAmount) As Total_Sales
  FROM Sales
Group By Statement




 Select Employee, SUM(Hours) As Total_Hours
  from Time_Table
  Group By Employee
Having Statement




 Select Employee, SUM(Hours) As Total_Hours
  from Time_Table
  Group By Employee
  Having SUM(Hours) >24
SQL Alias
CustomerID   First_Name   Email                  DOB          Phone
1            Smith        John.Smith@yahoo.com 2/4/1968       222 222-2222
2            Goldfish     goldfish@gmail.com     4/4/1974     999 455-4545
3            Brown        pb@hotmail.com         5/24/1978    777 323-3232
4            Kapil        jim@ymail.com          20/10/1980   666 323-8888
5            Hunt         Peter.hunt@gmail.com   1/1/1974     626 888-8888
SQL Alias (Contd.)

 Select a.First_Name, b.SaleAmount
  From Customer a, Sales b
  Where a.CustomerID=b.CustomerID

 Select a.Email, a.DOB, a.Phone, b.Date, b.SaleAmount
  From Customer a, Sales b
  Where a.CustomerID=b.CustomerID

 Select a.First_Name, SUM(b.SaleAmount) AS TOTALSALES
  From Customer a, Sales b
  Where a.CustomerID=b.CustomerID
  Group By a.First_Name
SQL Constraints

   NOT NULL
   UNIQUE
   PRIMARY KEY
   FOREIGN KEY
   CHECK
   DEFAULT
PK & UK Differences
Primary Key:
1. It will not accept null values.
2. There will be only one primary key in a
table.
3. Clustered index is created in Primary key.
4. Primary key allows each
row in a table to be uniquely identified and ensures that no duplicate rows
exist.

Unique Key:
1. Null values are accepted.
2. More than one unique key will
be there in a table.
3. Non-Clustered index is created in unique key.
4. Unique
key constraint is used to prevent the duplication of key values within the rows of
a table and allow null values.
INNER JOIN
Table A   Table B
FULL OUTER JOIN
Table A   Table B
FULL OUTER JOIN - Case
Table A    Table B
LEFT OUTER JOIN
Table A   Table B
LEFT OUTER JOIN - Case
Table A    Table B
CROSS JOIN/ Cartesian Product
Table A   Table B

Weitere ähnliche Inhalte

Ähnlich wie SQL Course - QA

RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docxRELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docxsodhi3
 
More SQL in MySQL 8.0
More SQL in MySQL 8.0More SQL in MySQL 8.0
More SQL in MySQL 8.0Norvald Ryeng
 

Ähnlich wie SQL Course - QA (6)

Sql Server 2000
Sql Server 2000Sql Server 2000
Sql Server 2000
 
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docxRELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
RELATIONAL DATABASES & Database designCIS276EmployeeNumFir.docx
 
Sql 2006
Sql 2006Sql 2006
Sql 2006
 
ANSI vs Oracle language
ANSI vs Oracle languageANSI vs Oracle language
ANSI vs Oracle language
 
Exercise 1.docx
Exercise 1.docxExercise 1.docx
Exercise 1.docx
 
More SQL in MySQL 8.0
More SQL in MySQL 8.0More SQL in MySQL 8.0
More SQL in MySQL 8.0
 

Kürzlich hochgeladen

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUK Journal
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?Antenna Manufacturer Coco
 

Kürzlich hochgeladen (20)

2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 

SQL Course - QA

  • 2. What is SQL?  SQL stands for Structured Query Language  SQL lets you access and manipulate databases  SQL is an ANSI Standard ANSI: American National Standards Institute
  • 3. Why we use SQL?  SQL can execute queries against a database  SQL can retrieve data from a database  SQL can insert records in a database  SQL can update records in a database  SQL can delete records from a database  SQL can create new databases  SQL can create new tables in a database  SQL can create stored procedures in a database  SQL can create views in a database  SQL can set permissions on tables, procedures, and views
  • 4. What is RDBMS? RDBMS: Relational Database Management System *Software that stores and manipulates data arranged in relational database tables. Common RDBMS that use SQL are:  Oracle  Sybase  Microsoft SQL Server  Access
  • 5. DDL Data Definition Language (DDL) statements are used to define the database structure or schema.  CREATE - To create objects in the database  ALTER - Alters the structure of the database  DROP - Delete objects from the database  TRUNCATE - Remove all records from a table, including all spaces allocated for the records are removed
  • 6. DML Data Manipulation Language (DML) statements are used for managing data within schema objects.  SELECT - retrieve data from the a database  INSERT - insert data into a table  UPDATE - updates existing data within a table  DELETE - deletes all records from a table, the space for the records remain
  • 7. SQL Arithmetic Operators Operator Description Example + Addition - Adds values on either side a+b of the operator - Subtraction - Subtracts right hand a–b operand from left hand operand * Multiplication - Multiplies values on a*b either side of the operator / Division - Divides left hand operand by b / a right hand operand % Modulus - Divides left hand operand b%a by right hand operand and returns remainder
  • 8. SQL Comparison Operators Operator Description Example = Checks if the value of two operands are equal or not, if yes then (a = b) is not true. condition becomes true. != Checks if the value of two operands are equal or not, if values are not (a != b) is true. equal then condition becomes true. <> Checks if the value of two operands are equal or not, if values are not (a <> b) is true. equal then condition becomes true. > Checks if the value of left operand is greater than the value of right (a > b) is not true. operand, if yes then condition becomes true. < Checks if the value of left operand is less than the value of right (a < b) is true. operand, if yes then condition becomes true. >= Checks if the value of left operand is greater than or equal to the value (a >= b) is not true. of right operand, if yes then condition becomes true. <= Checks if the value of left operand is less than or equal to the value of (a <= b) is true. right operand, if yes then condition becomes true. !< Checks if the value of left operand is not less than the value of right (a !< b) is false. operand, if yes then condition becomes true. !> Checks if the value of left operand is not greater than the value of right (a !> b) is true. operand, if yes then condition becomes true.
  • 9. SQL Logical Operators Operator Description AND The AND operator allows the existence of multiple conditions in an SQL statement's WHERE clause. BETWEEN The BETWEEN operator is used to search for values that are within a set of values, given the minimum value and the maximum value. IN The IN operator is used to compare a value to a list of literal values that have been specified. LIKE The LIKE operator is used to compare a value to similar values using wildcard operators. NOT The NOT operator reverses the meaning of the logical operator with which it is used. Eg. NOT EXISTS, NOT BETWEEN, NOT IN etc. This is negate operator. OR The OR operator is used to combine multiple conditions in an SQL statement's WHERE clause. IS NULL The NULL operator is used to retrieve NULL values
  • 10. What is a Table? Table – A set of data arranged in columns and rows. The columns represent characteristics of stored data and the rows represent actual data entries. In the below table called “employee_table” we see that the columns are: First_Name, Last_Name, Email, DOB and Phone and rows are the data. employee_table First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888
  • 11. Select Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888  Select * from employee_table - All the columns in the employee_table are retrieved.  Select First_Name, Last_Name from employee_table - Only First_Name and Last_Name columns in the employee_table are retrieved.
  • 12. Distinct Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888  Select Distinct Last_Name from employee_table LastName Smith Goldfish Brown
  • 13. Where Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 777 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-8888 James Smith jim@ymail.com 20/10/1980 666 323-8888  Select * from employee_table where Last_Name= “Smith” John.Smith@yahoo.co John Smith 2/4/1968 222 222-2222 m James Smith jim@ymail.com 20/10/1980 666 323-8888
  • 14. Where Statement Examples: <>, >, >=, <, =<, Like, Wildcard and Between SELECT * SELECT * FROM employee_table FROM employee_table WHERE Last_Name <> 'Smith' WHERE DOB =< ‘20/10/1980' SELECT * SELECT * FROM employee_table FROM employee_table WHERE DOB > ‘20/10/1980' WHERE Phone LIKE ’777%’ SELECT * SELECT * FROM employee_table FROM employee_table WHERE DOB >= ‘20/10/1980' WHERE DOB BETWEEN ‘20/10/1980' AND ‘20/10/1990' SELECT * FROM employee_table WHERE DOB < ‘20/10/1980'
  • 15. Update Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888  UPDATE employee_table SET DOB = '5/10/1974' WHERE Last_Name = 'Goldfish' AND First_Name = 'Steven’  UPDATE employee_table SET Phone = '626 555-5555' WHERE Last_Name = 'Smith'
  • 16. Delete Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888  DELETE FROM employee_table  DELETE FROM employee_table WHERE Last_Name = 'Smith'
  • 17. IN Statement  SELECT * FROM Employee_Hours WHERE Date IN ('5/6/2004', '5/7/2004')  SELECT * FROM Employee_Hours WHERE Hours IN (‘9’, ’10’)
  • 18. Not IN Statement  SELECT * FROM Employee_Hours WHERE Date NOT IN ('5/6/2004', '5/7/2004')  SELECT * FROM Employee_Hours WHERE Hours NOT IN (‘9’, ’10’)
  • 19. AND/ OR Operator First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888  SELECT * FROM Employee_table WHERE First_Name = ‘’John ’’ and Last_Name = ‘’ Smith’’  SELECT * FROM Employee_table WHERE First_Name= ‘’Paula’’ or First_Name= ‘’James’’
  • 20. TOP Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888  SELECT TOP 10 * FROM Employee_table  SELECT TOP 200 * FROM Employee_table
  • 21. Insert Into Statement  INSERT INTO employee_table (FirstName, LastName, Email, DOB, Phone) VALUES ('Peter', 'Hunt', 'peter.hunt@gmail.com', '1/1/1974', '626 888-8888’) First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888 Peter Hunt Peter.hunt@gmail.com 1/1/1974 626 888-8888  INSERT INTO employee_table VALUES ('Peter', 'Hunt', 'peter.hunt@gmail.com', '1/1/1974', '626 888-8888')  INSERT INTO employee_table (FirstName, LastName) VALUES ('Peter', 'Hunt')
  • 22. Select Into Statement  SELECT FirstName, LastName INTO employee_table_name_backup FROM employee_table First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888 Peter Hunt Peter.hunt@gmail.com 1/1/1974 626 888-8888  SELECT * INTO employee_table_copy FROM employee_table
  • 23. Count Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888 Peter Hunt Peter.hunt@gmail.com 1/1/1974 626 888-8888  SELECT COUNT(*) FROM employee_table  SELECT COUNT (First_Name) FROM employee_table
  • 24. As Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888 Peter Hunt Peter.hunt@gmail.com 1/1/1974 626 888-8888  SELECT Last_Name AS “EMP_LNAME”, Phone AS “Emergency_Contact” FROM employee_table  SELECT COUNT (First_Name) AS “Number_of_employees” FROM employee_table
  • 25. Order By Statement First_Name Last_Name Email DOB Phone John Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 Steven Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 Paula Brown pb@hotmail.com 5/24/1978 777 323-3232 James Smith jim@ymail.com 20/10/1980 666 323-8888 Peter Hunt peter.hunt@gmail.com 1/1/1974 626 888-8888  SELECT * FROM employee_table ORDER BY DOB  SELECT * FROM employee_table ORDER BY DOB DESC  SELECT * FROM employee_table ORDER BY DOB ASC  SELECT * FROM employee_table ORDER BY DOB, Last_Name
  • 26. MAX Function  SELECT MAX(SaleAmount) As MAX_Sales FROM Sales
  • 27. MIN Function  SELECT Min(SaleAmount) As MIN_Sales FROM Sales
  • 28. AVG Function  SELECT AVG(SaleAmount) As AVG_Sales FROM Sales
  • 29. SUM Function  SELECT SUM(SaleAmount) As Total_Sales FROM Sales
  • 30. Group By Statement  Select Employee, SUM(Hours) As Total_Hours from Time_Table Group By Employee
  • 31. Having Statement  Select Employee, SUM(Hours) As Total_Hours from Time_Table Group By Employee Having SUM(Hours) >24
  • 32. SQL Alias CustomerID First_Name Email DOB Phone 1 Smith John.Smith@yahoo.com 2/4/1968 222 222-2222 2 Goldfish goldfish@gmail.com 4/4/1974 999 455-4545 3 Brown pb@hotmail.com 5/24/1978 777 323-3232 4 Kapil jim@ymail.com 20/10/1980 666 323-8888 5 Hunt Peter.hunt@gmail.com 1/1/1974 626 888-8888
  • 33. SQL Alias (Contd.)  Select a.First_Name, b.SaleAmount From Customer a, Sales b Where a.CustomerID=b.CustomerID  Select a.Email, a.DOB, a.Phone, b.Date, b.SaleAmount From Customer a, Sales b Where a.CustomerID=b.CustomerID  Select a.First_Name, SUM(b.SaleAmount) AS TOTALSALES From Customer a, Sales b Where a.CustomerID=b.CustomerID Group By a.First_Name
  • 34. SQL Constraints  NOT NULL  UNIQUE  PRIMARY KEY  FOREIGN KEY  CHECK  DEFAULT
  • 35. PK & UK Differences Primary Key: 1. It will not accept null values.
2. There will be only one primary key in a table.
3. Clustered index is created in Primary key.
4. Primary key allows each row in a table to be uniquely identified and ensures that no duplicate rows exist. Unique Key:
1. Null values are accepted.
2. More than one unique key will be there in a table.
3. Non-Clustered index is created in unique key.
4. Unique key constraint is used to prevent the duplication of key values within the rows of a table and allow null values.
  • 38. FULL OUTER JOIN - Case Table A Table B
  • 40. LEFT OUTER JOIN - Case Table A Table B
  • 41. CROSS JOIN/ Cartesian Product Table A Table B