SlideShare a Scribd company logo
1 of 19
SQL Tutorial
                                  Basic SQL Commands




© 2013 1keydata.com All Rights Reserved
Agenda
        • Database Basics
        • SQL Commands
             –   SELECT … FROM
             –   WHERE
             –   ORDER BY
             –   GROUP BY
             –   HAVING

© 2013 1keydata.com All Rights Reserved
Database Basics
       In a relational database, data is stored in tables.


                                          Tables




                   Database
© 2013 1keydata.com All Rights Reserved
Database Basics
        Each table consists of columns and rows. Each column is a
        field in a record, and there is a column name associated with
        each column.                                  Columns
                                Tables




                   Database
© 2013 1keydata.com All Rights Reserved
Database Basics
        Each row represents one record. When we say how many
        records we have, we are referring to the number of rows.
                                                     Columns
                             Tables



                                          Rows




                   Database
© 2013 1keydata.com All Rights Reserved
SELECT … FROM
        SQL is structured similar to the English language. The basic
        command for retrieving data from a database table is to
        SELECT data FROM a table. Not surprisingly, the keywords
        "SELECT" and "FROM" make up the core of a SQL
        statement.

        The syntax for “SELECT… FROM” is:
        SELECT “COLUMN_NAME”
        FROM “TABLE_NAME”

© 2013 1keydata.com All Rights Reserved
SELECT … FROM
        Different ways of selecting data:
        Select more than 1 column:
        SELECT “COLUMN_NAME_1”, “COLUMN_NAME_2”
        FROM “TABLE_NAME”


        Select all columns:               Select unique values:
        SELECT *                          SELECT DISTINCT “Column_Name”
        FROM “TABLE_NAME”                 FROM “TABLE_NAME”




© 2013 1keydata.com All Rights Reserved
WHERE
        Sometimes we want to retrieve only a subset of the data. In
        those cases, we use the “WHERE” keyword.

        The syntax for “WHERE” is:

        SELECT “COLUMN_NAME”
        FROM “TABLE_NAME”
        WHERE “CONDITION”
        CONDITION represents how we want the data to be filtered.

© 2013 1keydata.com All Rights Reserved
ORDER BY
        When we want to list the results in a particular order
        (ascending or descending), we use the ORDER BY keyword at
        the end of the SQL statement.

        The syntax for “ORDER BY” is:

        SELECT “COLUMN_NAME”
        FROM “TABLE_NAME”
        WHERE “CONDITION”
        ORDER BY “COLUMN_NAME” [ASC | DESC]
© 2013 1keydata.com All Rights Reserved
MATHEMATICAL FUNCTIONS

        SQL has built-in mathematical functions to allow us to
        perform mathematical operations on the data. Common
        mathematical functions include:
        • SUM
        • AVG
        • COUNT
        • MAX
        • MIN



© 2013 1keydata.com All Rights Reserved
GROUP BY

       To find the highest Sales_Amount across all stores, we use the
       MAX( ) function in the following SQL:

    SALES_HISTORY
     Date    Store    Sales_Amount
                                          SELECT MAX(Sales_Amount)
                                          FROM SALES_HISTORY;




© 2013 1keydata.com All Rights Reserved
GROUP BY

       To find the highest Sales_Amount for each store, we change
       the SELECT portion to include “Store”:

    SALES_HISTORY
     Date    Store    Sales_Amount
                                          SELECT Store, MAX(Sales_Amount)
                                          FROM SALES_HISTORY;




© 2013 1keydata.com All Rights Reserved
GROUP BY
       However, this SELECT statement by itself is not enough. To
       allow SQL to correctly calculate what we want, we need to use
       the GROUP BY keyword. In the following example, the Store
       column after GROUP BY tells SQL to apply the MAX
       function for each Store.
    SALES_HISTORY
     Date    Store    Sales_Amount
                                          SELECT Store, MAX(Sales_Amount)
                                          FROM SALES_HISTORY
                                          GROUP BY Store;


© 2013 1keydata.com All Rights Reserved
GROUP BY
        To summarize, the syntax for GROUP BY is as follows:


        SELECT “COLUMN_NAME_1”,
         FUNCTION(“COLUMN_NAME_2”)
        FROM “TABLE_NAME”
        WHERE “CONDITION”
        GROUP BY “COLUMN_NAME_1”


© 2013 1keydata.com All Rights Reserved
HAVING
        Previously we had talked about using the WHERE keyword to
        filter results.

        We cannot use WHERE to filter based on the result of a
        function, because we need to specify the filtering condition
        after SQL has calculated the function, and consequently any
        filtering condition based on the function needs to be specified
        after the GROUP BY phrase. So we cannot use the WHERE
        keyword because it is always used before GROUP BY.

        HAVING is used to filter based on the result of a function.

© 2013 1keydata.com All Rights Reserved
HAVING
        The syntax for HAVING is as follows:

        SELECT “COLUMN_NAME_1”,
         FUNCTION(“COLUMN_NAME_2”)
        FROM “TABLE_NAME”
        GROUP BY “COLUMN_NAME_1”
        HAVING (CONDITION based on
         FUNCTION)

© 2013 1keydata.com All Rights Reserved
HAVING
       Using the SALES_HISTORY table we had earlier. If we want
       to sum the sales amount for each store, but only want to see
       results for stores with total sales amount greater than 100, we
       use the following SQL:
    SALES_HISTORY
     Date    Store    Sales_Amount         SELECT Store, SUM(Sales_Amount)
                                           FROM SALES_HISTORY
                                           GROUP BY Store
                                           HAVING SUM(Sales_Amount) > 100;

© 2013 1keydata.com All Rights Reserved
Order of SQL Commands
        A SELECT statement has the following order:
        • SELECT … FROM
        • WHERE
        • GROUP BY
        • HAVING
        • ORDER BY


© 2013 1keydata.com All Rights Reserved
1Keydata SQL Tutorial
               http://www.1keydata.com/sql/sql.html




© 2013 1keydata.com All Rights Reserved

More Related Content

What's hot

SQL: Structured Query Language
SQL: Structured Query LanguageSQL: Structured Query Language
SQL: Structured Query Language
Rohit Bisht
 
Constraints In Sql
Constraints In SqlConstraints In Sql
Constraints In Sql
Anurag
 

What's hot (20)

Introduction to-sql
Introduction to-sqlIntroduction to-sql
Introduction to-sql
 
Sql tutorial
Sql tutorialSql tutorial
Sql tutorial
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
 
introdution to SQL and SQL functions
introdution to SQL and SQL functionsintrodution to SQL and SQL functions
introdution to SQL and SQL functions
 
SQL Queries Information
SQL Queries InformationSQL Queries Information
SQL Queries Information
 
Introduction to SQL
Introduction to SQLIntroduction to SQL
Introduction to SQL
 
Presentation slides of Sequence Query Language (SQL)
Presentation slides of Sequence Query Language (SQL)Presentation slides of Sequence Query Language (SQL)
Presentation slides of Sequence Query Language (SQL)
 
SQL Basics
SQL BasicsSQL Basics
SQL Basics
 
Sql join
Sql  joinSql  join
Sql join
 
Ms sql-server
Ms sql-serverMs sql-server
Ms sql-server
 
SQL: Structured Query Language
SQL: Structured Query LanguageSQL: Structured Query Language
SQL: Structured Query Language
 
Sql server T-sql basics ppt-3
Sql server T-sql basics  ppt-3Sql server T-sql basics  ppt-3
Sql server T-sql basics ppt-3
 
Sql queries presentation
Sql queries presentationSql queries presentation
Sql queries presentation
 
Constraints In Sql
Constraints In SqlConstraints In Sql
Constraints In Sql
 
Sql Server Basics
Sql Server BasicsSql Server Basics
Sql Server Basics
 
Sql Constraints
Sql ConstraintsSql Constraints
Sql Constraints
 
SQL Views
SQL ViewsSQL Views
SQL Views
 
Sql commands
Sql commandsSql commands
Sql commands
 
SQL JOIN
SQL JOINSQL JOIN
SQL JOIN
 
Sql commands
Sql commandsSql commands
Sql commands
 

Similar to SQL Tutorial - Basic Commands

sqltutorialbasiccommands-130310014513-phpapp01.pdf
sqltutorialbasiccommands-130310014513-phpapp01.pdfsqltutorialbasiccommands-130310014513-phpapp01.pdf
sqltutorialbasiccommands-130310014513-phpapp01.pdf
pradeepvunnam2
 
Subqueries, Backups, Users and Privileges
Subqueries, Backups, Users and PrivilegesSubqueries, Backups, Users and Privileges
Subqueries, Backups, Users and Privileges
Ashwin Dinoriya
 

Similar to SQL Tutorial - Basic Commands (20)

sqltutorialbasiccommands-130310014513-phpapp01.pdf
sqltutorialbasiccommands-130310014513-phpapp01.pdfsqltutorialbasiccommands-130310014513-phpapp01.pdf
sqltutorialbasiccommands-130310014513-phpapp01.pdf
 
Sql
SqlSql
Sql
 
Sql
SqlSql
Sql
 
Subqueries, Backups, Users and Privileges
Subqueries, Backups, Users and PrivilegesSubqueries, Backups, Users and Privileges
Subqueries, Backups, Users and Privileges
 
Oracle SQL Basics
Oracle SQL BasicsOracle SQL Basics
Oracle SQL Basics
 
Oracle notes
Oracle notesOracle notes
Oracle notes
 
MySQL basics
MySQL basicsMySQL basics
MySQL basics
 
Hira
HiraHira
Hira
 
Veri Ambarları için Oracle'ın Analitik SQL Desteği
Veri Ambarları için Oracle'ın Analitik SQL DesteğiVeri Ambarları için Oracle'ın Analitik SQL Desteği
Veri Ambarları için Oracle'ın Analitik SQL Desteği
 
MS SQL SERVER: Retrieving Data From A Database
MS SQL SERVER: Retrieving Data From A DatabaseMS SQL SERVER: Retrieving Data From A Database
MS SQL SERVER: Retrieving Data From A Database
 
Retrieving Data From A Database
Retrieving Data From A DatabaseRetrieving Data From A Database
Retrieving Data From A Database
 
MS SQLSERVER:Retrieving Data From A Database
MS SQLSERVER:Retrieving Data From A DatabaseMS SQLSERVER:Retrieving Data From A Database
MS SQLSERVER:Retrieving Data From A Database
 
Sql wksht-3
Sql wksht-3Sql wksht-3
Sql wksht-3
 
Beg sql
Beg sqlBeg sql
Beg sql
 
Beg sql
Beg sqlBeg sql
Beg sql
 
Chapter – 6 SQL Lab Tutorial.pdf
Chapter – 6 SQL Lab Tutorial.pdfChapter – 6 SQL Lab Tutorial.pdf
Chapter – 6 SQL Lab Tutorial.pdf
 
SQL.ppt
SQL.pptSQL.ppt
SQL.ppt
 
SQL Tutorial - How To Create, Drop, and Truncate Table
SQL Tutorial - How To Create, Drop, and Truncate TableSQL Tutorial - How To Create, Drop, and Truncate Table
SQL Tutorial - How To Create, Drop, and Truncate Table
 
intro for sql
intro for sql intro for sql
intro for sql
 
Database COMPLETE
Database COMPLETEDatabase COMPLETE
Database COMPLETE
 

Recently uploaded

如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样
如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样
如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样
wsppdmt
 
Abortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted Kit
Abortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted KitAbortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted Kit
Abortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted Kit
Abortion pills in Riyadh +966572737505 get cytotec
 
Simplify hybrid data integration at an enterprise scale. Integrate all your d...
Simplify hybrid data integration at an enterprise scale. Integrate all your d...Simplify hybrid data integration at an enterprise scale. Integrate all your d...
Simplify hybrid data integration at an enterprise scale. Integrate all your d...
varanasisatyanvesh
 
bams-3rd-case-presentation-scabies-12-05-2020.pptx
bams-3rd-case-presentation-scabies-12-05-2020.pptxbams-3rd-case-presentation-scabies-12-05-2020.pptx
bams-3rd-case-presentation-scabies-12-05-2020.pptx
JocylDuran
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
q6pzkpark
 
sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444
saurabvyas476
 

Recently uploaded (20)

How to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data AnalyticsHow to Transform Clinical Trial Management with Advanced Data Analytics
How to Transform Clinical Trial Management with Advanced Data Analytics
 
社内勉強会資料_Object Recognition as Next Token Prediction
社内勉強会資料_Object Recognition as Next Token Prediction社内勉強会資料_Object Recognition as Next Token Prediction
社内勉強会資料_Object Recognition as Next Token Prediction
 
Digital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham WareDigital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham Ware
 
如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样
如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样
如何办理英国诺森比亚大学毕业证(NU毕业证书)成绩单原件一模一样
 
Abortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted Kit
Abortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted KitAbortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted Kit
Abortion pills in Riyadh Saudi Arabia| +966572737505 | Get Cytotec, Unwanted Kit
 
DAA Assignment Solution.pdf is the best1
DAA Assignment Solution.pdf is the best1DAA Assignment Solution.pdf is the best1
DAA Assignment Solution.pdf is the best1
 
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24  Building Real-Time Pipelines With FLaNKDATA SUMMIT 24  Building Real-Time Pipelines With FLaNK
DATA SUMMIT 24 Building Real-Time Pipelines With FLaNK
 
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
Identify Customer Segments to Create Customer Offers for Each Segment - Appli...
 
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
Statistics Informed Decisions Using Data 5th edition by Michael Sullivan solu...
 
Unsatisfied Bhabhi ℂall Girls Vadodara Book Esha 7427069034 Top Class ℂall Gi...
Unsatisfied Bhabhi ℂall Girls Vadodara Book Esha 7427069034 Top Class ℂall Gi...Unsatisfied Bhabhi ℂall Girls Vadodara Book Esha 7427069034 Top Class ℂall Gi...
Unsatisfied Bhabhi ℂall Girls Vadodara Book Esha 7427069034 Top Class ℂall Gi...
 
Simplify hybrid data integration at an enterprise scale. Integrate all your d...
Simplify hybrid data integration at an enterprise scale. Integrate all your d...Simplify hybrid data integration at an enterprise scale. Integrate all your d...
Simplify hybrid data integration at an enterprise scale. Integrate all your d...
 
jll-asia-pacific-capital-tracker-1q24.pdf
jll-asia-pacific-capital-tracker-1q24.pdfjll-asia-pacific-capital-tracker-1q24.pdf
jll-asia-pacific-capital-tracker-1q24.pdf
 
bams-3rd-case-presentation-scabies-12-05-2020.pptx
bams-3rd-case-presentation-scabies-12-05-2020.pptxbams-3rd-case-presentation-scabies-12-05-2020.pptx
bams-3rd-case-presentation-scabies-12-05-2020.pptx
 
Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?Case Study 4 Where the cry of rebellion happen?
Case Study 4 Where the cry of rebellion happen?
 
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
一比一原版(曼大毕业证书)曼尼托巴大学毕业证成绩单留信学历认证一手价格
 
Bios of leading Astrologers & Researchers
Bios of leading Astrologers & ResearchersBios of leading Astrologers & Researchers
Bios of leading Astrologers & Researchers
 
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
 
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptxRESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
RESEARCH-FINAL-DEFENSE-PPT-TEMPLATE.pptx
 
sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444sourabh vyas1222222222222222222244444444
sourabh vyas1222222222222222222244444444
 
Northern New England Tableau User Group (TUG) May 2024
Northern New England Tableau User Group (TUG) May 2024Northern New England Tableau User Group (TUG) May 2024
Northern New England Tableau User Group (TUG) May 2024
 

SQL Tutorial - Basic Commands

  • 1. SQL Tutorial Basic SQL Commands © 2013 1keydata.com All Rights Reserved
  • 2. Agenda • Database Basics • SQL Commands – SELECT … FROM – WHERE – ORDER BY – GROUP BY – HAVING © 2013 1keydata.com All Rights Reserved
  • 3. Database Basics In a relational database, data is stored in tables. Tables Database © 2013 1keydata.com All Rights Reserved
  • 4. Database Basics Each table consists of columns and rows. Each column is a field in a record, and there is a column name associated with each column. Columns Tables Database © 2013 1keydata.com All Rights Reserved
  • 5. Database Basics Each row represents one record. When we say how many records we have, we are referring to the number of rows. Columns Tables Rows Database © 2013 1keydata.com All Rights Reserved
  • 6. SELECT … FROM SQL is structured similar to the English language. The basic command for retrieving data from a database table is to SELECT data FROM a table. Not surprisingly, the keywords "SELECT" and "FROM" make up the core of a SQL statement. The syntax for “SELECT… FROM” is: SELECT “COLUMN_NAME” FROM “TABLE_NAME” © 2013 1keydata.com All Rights Reserved
  • 7. SELECT … FROM Different ways of selecting data: Select more than 1 column: SELECT “COLUMN_NAME_1”, “COLUMN_NAME_2” FROM “TABLE_NAME” Select all columns: Select unique values: SELECT * SELECT DISTINCT “Column_Name” FROM “TABLE_NAME” FROM “TABLE_NAME” © 2013 1keydata.com All Rights Reserved
  • 8. WHERE Sometimes we want to retrieve only a subset of the data. In those cases, we use the “WHERE” keyword. The syntax for “WHERE” is: SELECT “COLUMN_NAME” FROM “TABLE_NAME” WHERE “CONDITION” CONDITION represents how we want the data to be filtered. © 2013 1keydata.com All Rights Reserved
  • 9. ORDER BY When we want to list the results in a particular order (ascending or descending), we use the ORDER BY keyword at the end of the SQL statement. The syntax for “ORDER BY” is: SELECT “COLUMN_NAME” FROM “TABLE_NAME” WHERE “CONDITION” ORDER BY “COLUMN_NAME” [ASC | DESC] © 2013 1keydata.com All Rights Reserved
  • 10. MATHEMATICAL FUNCTIONS SQL has built-in mathematical functions to allow us to perform mathematical operations on the data. Common mathematical functions include: • SUM • AVG • COUNT • MAX • MIN © 2013 1keydata.com All Rights Reserved
  • 11. GROUP BY To find the highest Sales_Amount across all stores, we use the MAX( ) function in the following SQL: SALES_HISTORY Date Store Sales_Amount SELECT MAX(Sales_Amount) FROM SALES_HISTORY; © 2013 1keydata.com All Rights Reserved
  • 12. GROUP BY To find the highest Sales_Amount for each store, we change the SELECT portion to include “Store”: SALES_HISTORY Date Store Sales_Amount SELECT Store, MAX(Sales_Amount) FROM SALES_HISTORY; © 2013 1keydata.com All Rights Reserved
  • 13. GROUP BY However, this SELECT statement by itself is not enough. To allow SQL to correctly calculate what we want, we need to use the GROUP BY keyword. In the following example, the Store column after GROUP BY tells SQL to apply the MAX function for each Store. SALES_HISTORY Date Store Sales_Amount SELECT Store, MAX(Sales_Amount) FROM SALES_HISTORY GROUP BY Store; © 2013 1keydata.com All Rights Reserved
  • 14. GROUP BY To summarize, the syntax for GROUP BY is as follows: SELECT “COLUMN_NAME_1”, FUNCTION(“COLUMN_NAME_2”) FROM “TABLE_NAME” WHERE “CONDITION” GROUP BY “COLUMN_NAME_1” © 2013 1keydata.com All Rights Reserved
  • 15. HAVING Previously we had talked about using the WHERE keyword to filter results. We cannot use WHERE to filter based on the result of a function, because we need to specify the filtering condition after SQL has calculated the function, and consequently any filtering condition based on the function needs to be specified after the GROUP BY phrase. So we cannot use the WHERE keyword because it is always used before GROUP BY. HAVING is used to filter based on the result of a function. © 2013 1keydata.com All Rights Reserved
  • 16. HAVING The syntax for HAVING is as follows: SELECT “COLUMN_NAME_1”, FUNCTION(“COLUMN_NAME_2”) FROM “TABLE_NAME” GROUP BY “COLUMN_NAME_1” HAVING (CONDITION based on FUNCTION) © 2013 1keydata.com All Rights Reserved
  • 17. HAVING Using the SALES_HISTORY table we had earlier. If we want to sum the sales amount for each store, but only want to see results for stores with total sales amount greater than 100, we use the following SQL: SALES_HISTORY Date Store Sales_Amount SELECT Store, SUM(Sales_Amount) FROM SALES_HISTORY GROUP BY Store HAVING SUM(Sales_Amount) > 100; © 2013 1keydata.com All Rights Reserved
  • 18. Order of SQL Commands A SELECT statement has the following order: • SELECT … FROM • WHERE • GROUP BY • HAVING • ORDER BY © 2013 1keydata.com All Rights Reserved
  • 19. 1Keydata SQL Tutorial http://www.1keydata.com/sql/sql.html © 2013 1keydata.com All Rights Reserved