Skip to content

Commit 3c04322

Browse files
Update Advanced SQL Puzzles DDL.sql
1 parent de3832d commit 3c04322

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Advanced SQL Puzzles/Advanced SQL Puzzles DDL.sql

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -325,10 +325,12 @@ PRIMARY KEY (Workflow, StepNumber)
325325
);
326326
GO
327327

328-
INSERT INTO #ProcessLog VALUES
329-
('Alpha',1,'Error'),('Alpha',2,'Complete'),('Bravo',1,'Complete'),('Bravo',2,'Complete'),
330-
('Charlie',1,'Complete'),('Charlie',2,'Error'),('Delta',1,'Complete'),('Delta',2,'Running'),
331-
('Echo',1,'Running'),('Echo',2,'Error'),('Foxtrot',1,'Error'),('Foxtrot',2,'Error');
328+
INSERT INTO ##ProcessLog VALUES
329+
('Alpha',1,'Error'),('Alpha',2,'Complete'),('Alpha',3,'Running'),
330+
('Bravo',1,'Complete'),('Bravo',2,'Complete'),
331+
('Charlie',1,'Running'),('Charlie',2,'Running'),
332+
('Delta',1,'Error'),('Delta',2,'Error'),
333+
('Echo',1,'Running'),('Echo',2,'Complete');
332334
GO
333335

334336
/*----------------------------------------------------

0 commit comments

Comments
 (0)