Skip to content

Commit

Permalink
Add missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
bclothier committed Jun 22, 2016
1 parent 6e45f78 commit 11bd39d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IBM DB2/Chapter 04/Listing 4.024.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ SET SCHEMA Item27Example;
SELECT L.LogUserID, L.Logger, L.LogLevel, L.LogMessage
FROM ProgramLogs AS L
WHERE L.LogDate BETWEEN CAST('2016-07-04' AS timestamp)
AND CAST('2016-07-05' AS timestamp)
AND CAST('2016-07-05' AS timestamp);

2 changes: 1 addition & 1 deletion Microsoft SQL Server/Chapter 04/Listing 4.024.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ GO
SELECT L.LogUserID, L.Logger, L.LogLevel, L.LogMessage
FROM ProgramLogs AS L
WHERE L.LogDate BETWEEN CONVERT(datetime, '2016-07-04', 120)
AND CONVERT(datetime, '2016-07-05', 120)
AND CONVERT(datetime, '2016-07-05', 120);

2 changes: 1 addition & 1 deletion MySQL/Chapter 04/Listing 4.024.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ USE Item27Example;
SELECT L.LogUserID, L.Logger, L.LogLevel, L.LogMessage
FROM ProgramLogs AS L
WHERE L.LogDate BETWEEN CONVERT('2016-07-04', datetime)
AND CONVERT('2016-07-05', datetime)
AND CONVERT('2016-07-05', datetime);

0 comments on commit 11bd39d

Please sign in to comment.