Skip to content

Commit 8165ee1

Browse files
authored
output-clause-transact-sql.md: example highligting
This code example has incorrect highlighting. I figure either the semicolons or the trailing space might fix this
1 parent 4ba05a2 commit 8165ee1

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -263,17 +263,17 @@ DECLARE @MyTableVar TABLE
263263
employee VARCHAR(32)
264264
);
265265

266-
PRINT 'table1, before delete'
266+
PRINT 'table1, before delete';
267267
SELECT * FROM dbo.table1;
268268

269269
DELETE FROM dbo.table1
270270
OUTPUT DELETED.* INTO @MyTableVar
271271
WHERE id = 4 OR id = 2;
272272

273-
PRINT 'table1, after delete'
273+
PRINT 'table1, after delete';
274274
SELECT * FROM dbo.table1;
275275

276-
PRINT '@MyTableVar, after delete'
276+
PRINT '@MyTableVar, after delete';
277277
SELECT * FROM @MyTableVar;
278278

279279
DROP TABLE dbo.table1;

0 commit comments

Comments
 (0)