Skip to content

Commit ba0b9ce

Browse files
authored
Update set-local-variable-transact-sql.md
1 parent 18a7452 commit ba0b9ce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/t-sql/language-elements/set-local-variable-transact-sql.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ A variable whose type is located in an assembly. For more information, see [Comm
8585
*mutator_method*
8686
A method in the assembly that can change the state of the object. SQLMethodAttribute.IsMutator is applied to this method.
8787

88-
{ **+=** | **-=** | **\*=** | **/=** | **%=** | **&=** | **^=** | **|=** }
88+
`{ **+=** | **-=** | **\*=** | **/=** | **%=** | **&=** | **^=** | **|=** }`
8989
Compound assignment operator:
9090

9191
+= Add and assign
@@ -160,7 +160,7 @@ If *select_statement* contains an ORDER BY clause in which the columns aren't un
160160
READ ONLY
161161
Prevents updates from being made through this cursor. The cursor can't be referenced in a WHERE CURRENT OF clause in an UPDATE or DELETE statement. This option overrides the default capability of a cursor to be updated. This keyword varies from the earlier READ_ONLY by having a space instead of an underscore between READ and ONLY.
162162

163-
UPDATE [OF *column_name*[ **,**... *n* ] ]
163+
`UPDATE [OF column_name[ ,... n ] ]`
164164
Defines updatable columns within the cursor. If OF *column_name* [**,**...*n*] is supplied, only the columns listed allow modifications. When no list is supplied, all columns can be updated, unless the cursor has been defined as READ_ONLY.
165165

166166
## Remarks

0 commit comments

Comments
 (0)