Skip to content

Commit 2b8e794

Browse files
committed
[Versioning] T-SQL/Queries folder batch MicrosoftDocs#1
1 parent 98ab5b0 commit 2b8e794

24 files changed

Lines changed: 72 additions & 24 deletions

docs/t-sql/queries/contains-transact-sql.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ CONTAINS (
134134
135135
```
136136

137-
## Arguments
137+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
138+
139+
## Arguments
138140
*column_name*
139141
Is the name of a full-text indexed column of the table specified in the FROM clause. The columns can be of type **char**, **varchar**, **nchar**, **nvarchar**, **text**, **ntext**, **image**, **xml**, **varbinary**, or **varbinary(max)**.
140142

docs/t-sql/queries/freetext-transact-sql.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ FREETEXT ( { column_name | (column_list) | * }
4848
, 'freetext_string' [ , LANGUAGE language_term ] )
4949
```
5050

51-
## Arguments
51+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
52+
53+
## Arguments
5254
*column_name*
5355
Is the name of one or more full-text indexed columns of the table specified in the FROM clause. The columns can be of type **char**, **varchar**, **nchar**, **nvarchar**, **text**, **ntext**, **image**, **xml**, **varbinary**, or **varbinary(max)**.
5456

docs/t-sql/queries/hints-transact-sql-join.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ ms.author: vanto
4949
{ LOOP | HASH | MERGE | REMOTE }
5050
```
5151

52-
## Arguments
52+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
53+
54+
## Arguments
5355
LOOP | HASH | MERGE
5456
Specifies that the join in the query should use looping, hashing, or merging. Using LOOP |HASH | MERGE JOIN enforces a particular join between two tables. LOOP cannot be specified together with RIGHT or FULL as a join type. For more information, see [Joins](../../relational-databases/performance/joins.md).
5557

docs/t-sql/queries/hints-transact-sql-query.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ Query hints specify that the indicated hints should be used throughout the query
132132
}
133133
```
134134

135-
## Arguments
135+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
136+
137+
## Arguments
136138
{ HASH | ORDER } GROUP
137139
Specifies that aggregations that the query's GROUP BY or DISTINCT clause describes should use hashing or ordering.
138140

docs/t-sql/queries/hints-transact-sql-table.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ WITH ( <table_hint> [ [, ]...n ] )
114114
}
115115
```
116116

117-
## Arguments
117+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
118+
119+
## Arguments
118120
WITH **(** \<table_hint> **)** [ [**,** ]...*n* ]
119121
With some exceptions, table hints are supported in the FROM clause only when the hints are specified with the WITH keyword. Table hints also must be specified with parentheses.
120122

docs/t-sql/queries/is-null-transact-sql.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ monikerRange: ">=aps-pdw-2016||=azuresqldb-current||=azure-sqldw-latest||>=sql-s
4646
expression IS [ NOT ] NULL
4747
```
4848

49-
## Arguments
49+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
50+
51+
## Arguments
5052
*expression*
5153
Is any valid [expression](../../t-sql/language-elements/expressions-transact-sql.md).
5254

docs/t-sql/queries/match-sql-graph.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ n - positive integer only.
107107
108108
```
109109

110-
## Arguments
110+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
111+
112+
## Arguments
111113
*graph_search_pattern*
112114
Specifies the pattern to search or path to traverse in the graph. This pattern uses ASCII art syntax to traverse a path in the graph. The pattern goes from one node to another via an edge, in the direction of the arrow provided. Edge names or aliases are provided inside parentheses. Node names or aliases appear at the two ends of the arrow. The arrow can go in either direction in the pattern.
113115

docs/t-sql/queries/option-clause-transact-sql.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ OPTION ( <query_option> [ ,...n ] )
5656
| { FORCE | DISABLE } EXTERNALPUSHDOWN
5757
```
5858

59-
## Arguments
59+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
60+
61+
## Arguments
6062
*query_hint*
6163
Keywords that indicate which optimizer hints are used to customize the way the Database Engine processes the statement. For more information, see [Query Hints &#40;Transact-SQL&#41;](../../t-sql/queries/hints-transact-sql-query.md).
6264

docs/t-sql/queries/output-clause-transact-sql.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ ms.author: vanto
6969
| $action
7070
```
7171

72-
## Arguments
72+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
73+
74+
## Arguments
7375
\@*table_variable*
7476
Specifies a **table** variable that the returned rows are inserted into instead of being returned to the caller. \@*table_variable* must be declared before the INSERT, UPDATE, DELETE, or MERGE statement.
7577

docs/t-sql/queries/readtext-transact-sql.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ Reads **text**, **ntext**, or **image** values from a **text**, **ntext**, or **
3737
READTEXT { table.column text_ptr offset size } [ HOLDLOCK ]
3838
```
3939

40-
## Arguments
40+
[!INCLUDE[sql-server-tsql-previous-offline-documentation](../../includes/sql-server-tsql-previous-offline-documentation.md)]
41+
42+
## Arguments
4143
_table_ **.** _column_
4244
Is the name of a table and column from which to read. Table and column names must fulfill the rules for [identifiers](../../relational-databases/databases/database-identifiers.md). Specifying the table and column names is required; however, specifying the database name and owner names is optional.
4345

0 commit comments

Comments
 (0)