diff --git a/docs/t-sql/lesson-3-deleting-database-objects.md b/docs/t-sql/lesson-3-deleting-database-objects.md index 356938b3240..ed19d4de877 100644 --- a/docs/t-sql/lesson-3-deleting-database-objects.md +++ b/docs/t-sql/lesson-3-deleting-database-objects.md @@ -38,33 +38,32 @@ Use the `REVOKE` statement to remove execute permission for `Mary` on the stored 1. Use the `DROP` statement to remove permission for `Mary` to access the `TestData` database: - ```sql - DROP USER Mary; - GO - ``` + ```sql + DROP USER Mary; + GO + ``` 2. Use the `DROP` statement to remove permission for `Mary` to access this instance of [!INCLUDE[ssVersion2005](../includes/ssversion2005-md.md)]: - ```sql - DROP LOGIN [\Mary]; - GO - ``` - -3. Use the `DROP` statement to remove the store procedure `pr_Names`: + ```sql + DROP LOGIN [\Mary]; + GO + ``` - ```sql - DROP PROC pr_Names; - GO - ``` +3. Use the `DROP` statement to remove the store procedure `pr_Names`: -6. Use the `DROP` statement to remove the view `vw_Names`: + ```sql + DROP PROC pr_Names; + GO + ``` - ```sql - DROP VIEW vw_Names; - GO +4. Use the `DROP` statement to remove the view `vw_Names`: - ``` + ```sql + DROP VIEW vw_Names; + GO + ``` ## Delete table