Skip to content

Commit e840339

Browse files
authored
Refresh SELECT articles (#36534)
1 parent fe00080 commit e840339

40 files changed

Lines changed: 1473 additions & 1285 deletions

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_1.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT *
55
FROM Production.Product
66
ORDER BY Name ASC;
77

88
-- Alternate way.
9-
USE AdventureWorks2022;
9+
USE AdventureWorks2025;
1010
GO
1111

1212
SELECT p.*

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_10.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT DISTINCT p.LastName,

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_11.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT p1.ProductModelID

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_12.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT DISTINCT pp.LastName,

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_13.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT SalesOrderID,

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_14.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT ProductID,

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_15.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT ProductModelID,

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_16.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT AVG(OrderQty) AS [Average Quantity],

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_17.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT ProductID,

docs/t-sql/queries/codesnippet/tsql/select-examples-transact_18.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
USE AdventureWorks2022;
1+
USE AdventureWorks2025;
22
GO
33

44
SELECT ProductID

0 commit comments

Comments
 (0)