Skip to content

Commit 2a14f82

Browse files
authored
Merge pull request #701 from osfancy/patch-7
Update lesson-3-1-deleting-database-objects.md
2 parents 281e6da + 214d7ac commit 2a14f82

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/t-sql/lesson-3-1-deleting-database-objects.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
title: "Deleting Database Objects | Microsoft Docs"
33
ms.custom: ""
44
ms.date: "03/14/2017"
@@ -69,7 +69,7 @@ To remove all traces of this tutorial, you could just delete the database. Howev
6969
6. Use the `DROP` statement to remove the view `vw_Names`:
7070
7171
```
72-
DROP View vw_Names;
72+
DROP VIEW vw_Names;
7373
GO
7474
7575
```
@@ -85,7 +85,7 @@ To remove all traces of this tutorial, you could just delete the database. Howev
8585
8. Use the `DROP` statement to remove the `Products` table:
8686
8787
```
88-
DROP Table Products;
88+
DROP TABLE Products;
8989
GO
9090
9191
```

0 commit comments

Comments
 (0)