Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
The SQL Workshop

You're reading from  The SQL Workshop

Product type Book
Published in Dec 2019
Publisher Packt
ISBN-13 9781838642358
Pages 288 pages
Edition 1st Edition
Languages
Concepts
Authors (3):
Frank Solomon Frank Solomon
Profile icon Frank Solomon
Prashanth Jayaram Prashanth Jayaram
Profile icon Prashanth Jayaram
Awni Al Saqqa Awni Al Saqqa
Profile icon Awni Al Saqqa
View More author details

Table of Contents (13) Chapters

Preface 1. SQL Basics 2. Manipulating Data 3. Normalization 4. The SELECT Statement 5. Shaping Data with the WHERE Clause 6. JOINS 7. Subqueries, Cases, and Views 8. SQL Programming 9. Security 10. Aggregate Functions 11. Advanced SQL Appendix

7. Subqueries, Cases, and Views

Activity 7.01: Finding the Product Category Name Using a Subquery

Solution:

  1. Enter the following query:
    USE packt_online_shop;
    SELECT  PC.ProductCategoryName
    FROM    ProductCategories PC
    WHERE   ProductCategoryID IN
    (SELECT ProductCategoryID FROM Products WHERE   ProductName = 'habanero peppers');
  2. Run the query. Your output will be as follows:

Figure 7.10: Category of the habanero peppers food item

Activity 7.02: Categorizing the Shipments Using CASE Statements

Solution:

  1. Enter the following query:
    USE packt_online_shop;
    SELECT OrderNumber, ShipmentDate,
    CASE
    WHEN ShipmentDate < ' 2010-12-10' THEN 'Past Shipment Date'
    WHEN ShipmentDate >= ' 2010-12-10' AND
    ShipmentDate < ' 2019-12-18' THEN
    'Recent Shipment Date'
    ELSE 'Future Shipment Date'
    END AS 'Shipment Date Category'
    FROM Orders;
  2. Execute the query. You should...
lock icon The rest of the chapter is locked
arrow left Previous Chapter
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}