Skip to content

Commit f894b0d

Browse files
committed
Updated metadata
1 parent 3b12c0b commit f894b0d

14 files changed

Lines changed: 65 additions & 66 deletions

Instructions/Labs/01-get-started-with-tsql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Get Started with Transact-SQL
44
module: 'Module 1: Getting Started with Transact-SQL'
55
description: In this exercise, you will use some basic SELECT queries to retrieve data from the AdventureWorks database.
6-
duration: 124 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

Instructions/Labs/02-filter-sort.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Sort and Filter Query Results
44
module: 'Module 2: Sorting and Filtering Query Results'
55
description: In this exercise, you'll use the Transact-SQL SELECT statement to query and filter data in the AdventureWorks database.
6-
duration: 148 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---
@@ -150,14 +150,14 @@ Often, multiple rows in a table may contain the same values for a given subset o
150150
151151
7. Run the modified query and note that the results include one row for each unique **Color** value. This ability to remove duplicates from the results can often be useful - for example to retrieve values in order to populate a drop-down list of color options in a user interface.
152152
153-
9. Modify the query to add the **Size** field as shown here:
153+
8. Modify the query to add the **Size** field as shown here:
154154
155155
```sql
156156
SELECT DISTINCT Color, Size
157157
FROM SalesLT.Product;
158158
```
159159
160-
8. Run the modified query and note that it returns each unique combination of color and size.
160+
9. Run the modified query and note that it returns each unique combination of color and size.
161161
162162
## Filter results with the WHERE clause
163163
@@ -301,7 +301,7 @@ This section contains suggested solutions for the challenge queries.
301301
FROM SalesLT.Address
302302
ORDER BY City
303303
```
304-
304+
305305
2. Retrieve the heaviest products:
306306
307307
```sql

Instructions/Labs/03a-joins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Query Multiple Tables with Joins
44
module: 'Module 3: Using Joins and Subqueries'
55
description: In this exercise, you'll use the Transact-SQL SELECT statement to query multiple tables in the Adventureworks database.
6-
duration: 98 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---
@@ -214,7 +214,7 @@ This section contains suggested solutions for the challenge queries.
214214
JOIN SalesLT.SalesOrderHeader AS oh
215215
ON oh.CustomerID = c.CustomerID;
216216
```
217-
217+
218218
2. Retrieve customer orders with addresses:
219219
220220
```sql

Instructions/Labs/03b-subqueries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Use Subqueries
44
module: 'Module 3: Using Joins and Subqueries'
55
description: In this exercise, you'll use subqueries to retrieve data from tables in the adventureworks database.
6-
duration: 80 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

Instructions/Labs/04-built-in-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Use Built-in Functions
44
module: 'Module 4: Using Built-in Functions'
55
description: In this exercise, you'll use built-in functions to retrieve and aggregate data in the Adventureworks database.
6-
duration: 114 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

Instructions/Labs/05-modify-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Modify Data
44
module: 'Module 5: Modifying Data'
55
description: In this exercise, you'll insert, update, and delete data in the Adventureworks database.
6-
duration: 134 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

Instructions/Labs/06-use-table-expressions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Create queries with table expressions
44
module: Additional exercises
55
description: In this exercise, you'll use table expressions to query the Adventureworks database.
6-
duration: 66 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

Instructions/Labs/07-combine-query-results.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Combine query results with set operators
44
module: Additional exercises
55
description: In this lab, you will use set operators to retrieve results from the Adventureworks database.
6-
duration: 56 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

Instructions/Labs/08-create-window-query-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Use window functions
44
module: Additional exercises
55
description: In this exercise, you'll apply window functions on the Adventureworks database.
6-
duration: 36 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

Instructions/Labs/09-transform-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lab:
33
title: Use pivoting and grouping sets
44
module: Additional exercises
55
description: In this exercise, you'll use pivoting and grouping sets to query the Adventureworks database.
6-
duration: 50 minutes
6+
duration: 30
77
level: 100
88
islab: true
99
---

0 commit comments

Comments
 (0)