Skip to content

Commit cc824f4

Browse files
authored
Update docs/t-sql/queries/output-clause-transact-sql.md
1 parent 023175b commit cc824f4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,8 @@ GO
388388
```
389389

390390
### D. Using OUTPUT INTO to return an expression
391-
The following example builds on example C by defining an expression in the `OUTPUT` clause as the difference between the updated `VacationHours` value and the `VacationHours` value before the update was applied. The value of this expression is returned to the `@MyTableVar` `table` variable in the column `VacationHoursDifference`.
391+
The following example builds on example C by defining an expression in the `OUTPUT` clause as the difference between the updated `VacationHours` value and the `VacationHours` value before the update was applied. The value of this expression is returned to the `@MyTableVar` table variable in the column `VacationHoursDifference`.
392+
392393

393394
```sql
394395
USE AdventureWorks2012;

0 commit comments

Comments
 (0)