Skip to content

Commit 023175b

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

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
@@ -312,7 +312,8 @@ DROP TABLE dbo.table1;
312312
## Examples
313313

314314
### A. Using OUTPUT INTO with a simple INSERT statement
315-
The following example inserts a row into the `ScrapReason` table and uses the `OUTPUT` clause to return the results of the statement to the `@MyTableVar` `table` variable. Because the `ScrapReasonID` column is defined with an IDENTITY property, a value is not specified in the `INSERT` statement for that column. However, note that the value generated by the [!INCLUDE[ssDE](../../includes/ssde-md.md)] for that column is returned in the `OUTPUT` clause in the column `inserted.ScrapReasonID`.
315+
The following example inserts a row into the `ScrapReason` table and uses the `OUTPUT` clause to return the results of the statement to the `@MyTableVar` table variable. Because the `ScrapReasonID` column is defined with an IDENTITY property, a value is not specified in the `INSERT` statement for that column. However, note that the value generated by the [!INCLUDE[ssDE](../../includes/ssde-md.md)] for that column is returned in the `OUTPUT` clause in the column `inserted.ScrapReasonID`.
316+
316317

317318
```sql
318319
USE AdventureWorks2012;

0 commit comments

Comments
 (0)