Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
The SQL Workshop

You're reading from   The SQL Workshop Learn to create, manipulate and secure data and manage relational databases with SQL

Arrow left icon
Product type Paperback
Published in Dec 2019
Publisher Packt
ISBN-13 9781838642358
Length 288 pages
Edition 1st Edition
Languages
Concepts
Arrow right icon
Authors (3):
Arrow left icon
Prashanth Jayaram Prashanth Jayaram
Author Profile Icon Prashanth Jayaram
Prashanth Jayaram
Frank Solomon Frank Solomon
Author Profile Icon Frank Solomon
Frank Solomon
Awni Al Saqqa Awni Al Saqqa
Author Profile Icon Awni Al Saqqa
Awni Al Saqqa
Arrow right icon
View More author details
Toc

Table of Contents (13) Chapters Close

Preface 1. SQL Basics FREE CHAPTER 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

11. Advanced SQL

Activity 11.01: Implementing the LIKE Operator

Solution:

  1. Enter the following query:
    SELECT O.OrderID, O.CustomerID, O.OrderNumber, O.OrderDate,       O.ShipmentDate, O.OrderStatus, O.Notes
    FROM   Orders O
    WHERE  O.Notes LIKE '%CUST%' AND O.ShipmentDate > '01051995'

    We have set two filter conditions. Only when both are satisfied will the product be displayed.

  2. On execution of the query, your result will look similar to the following:

Figure 11.22: Customer notes post May 5, 1995

Notice that there are only three orders that have an order date post May 1, 1995 and have CUST as part of the Notes section.

Activity 11.02: Using Transactions

Solution:

  1. Execute the following code to verify the existence of the specific OrderItems rows:
    USE PACKT_ONLINE_SHOP; 
     
    SELECT    OrderItemID, OrderID, ProductID, Quantity,
              UnitPrice, Discount, Notes
    FROM     OrderItems
    WHERE    OrderID = 5; 

    The output...

lock icon The rest of the chapter is locked
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 $19.99/month. Cancel anytime