We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de3832d commit 3c04322Copy full SHA for 3c04322
Advanced SQL Puzzles/Advanced SQL Puzzles DDL.sql
@@ -325,10 +325,12 @@ PRIMARY KEY (Workflow, StepNumber)
325
);
326
GO
327
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');
+INSERT INTO ##ProcessLog VALUES
+('Alpha',1,'Error'),('Alpha',2,'Complete'),('Alpha',3,'Running'),
+('Bravo',1,'Complete'),('Bravo',2,'Complete'),
+('Charlie',1,'Running'),('Charlie',2,'Running'),
332
+('Delta',1,'Error'),('Delta',2,'Error'),
333
+('Echo',1,'Running'),('Echo',2,'Complete');
334
335
336
/*----------------------------------------------------
0 commit comments