Skip to content

Commit cc705e5

Browse files
authored
C115899: Escaping @ symbol
Localization team has reported source content issue that causes localized version to have broken/different format compared to en-us version. Description: @ is breaking right rendering on LOC pages.
1 parent d56eb6f commit cc705e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/t-sql/language-elements/fetch-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ FETCH
7070
*cursor_name*
7171
Is the name of the open cursor from which the fetch should be made. If both a global and a local cursor exist with *cursor_name* as their name, *cursor_name* to the global cursor if GLOBAL is specified and to the local cursor if GLOBAL is not specified.
7272

73-
@*cursor_variable_name*
73+
\@*cursor_variable_name*
7474
Is the name of a cursor variable referencing the open cursor from which the fetch should be made.
7575

76-
INTO @*variable_name*[ ,...*n*]
76+
INTO \@*variable_name*[ ,...*n*]
7777
Allows data from the columns of a fetch to be placed into local variables. Each variable in the list, from left to right, is associated with the corresponding column in the cursor result set. The data type of each variable must either match or be a supported implicit conversion of the data type of the corresponding result set column. The number of variables must match the number of columns in the cursor select list.
7878

7979
## Remarks

0 commit comments

Comments
 (0)