Skip to content

Commit

Permalink
Add missing semicolon terminator
Browse files Browse the repository at this point in the history
  • Loading branch information
bclothier committed Jun 20, 2016
1 parent 5afc919 commit 01c4be1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion IBM DB2/Chapter 04/Listing 4.005.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ FROM Products AS P
WHERE NOT EXISTS
(SELECT *
FROM Order_Details AS OD
WHERE OD.ProductNumber = P.ProductNumber)
WHERE OD.ProductNumber = P.ProductNumber);
2 changes: 1 addition & 1 deletion Microsoft SQL Server/Chapter 04/Listing 4.005.sql
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ FROM Products AS P
WHERE NOT EXISTS
(SELECT *
FROM Order_Details AS OD
WHERE OD.ProductNumber = P.ProductNumber)
WHERE OD.ProductNumber = P.ProductNumber);
2 changes: 1 addition & 1 deletion MySQL/Chapter 04/Listing 4.005.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ FROM Products AS P
WHERE NOT EXISTS
(SELECT *
FROM Order_Details AS OD
WHERE OD.ProductNumber = P.ProductNumber)
WHERE OD.ProductNumber = P.ProductNumber);
2 changes: 1 addition & 1 deletion Oracle/Chapter 04/Listing 4.005.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ FROM Products P
WHERE NOT EXISTS
(SELECT *
FROM Order_Details OD
WHERE OD.ProductNumber = P.ProductNumber)
WHERE OD.ProductNumber = P.ProductNumber);

0 comments on commit 01c4be1

Please sign in to comment.