Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.13 KB

File metadata and controls

34 lines (24 loc) · 1.13 KB
title Using Comments | Microsoft Docs
ms.custom
ms.date 06/13/2017
ms.prod sql-server-2014
ms.reviewer
ms.technology ssms
ms.topic conceptual
ms.assetid 0e9e6eab-0343-4840-9690-1736552ce371
author stevestein
ms.author sstein
manager craigg

Using Comments

[!INCLUDEssManStudioFull] allows you to easily comment out a portion of your script.

Commenting Out Part of a Script

To comment out a portion of your script

  1. Use your mouse to select the text WHERE LastName = 'Sanchez'.

  2. On the Edit menu, point to Advanced, and then click Comment Selection. The selected text is commented out with dashes (--).

In addition to using the Edit menu, you can comment or uncomment a selected portion of your script by using either of the following methods:

  • Click the buttons on the SQL Editor toolbar.

  • Press CTRL+K and CTRL+C to comment the text, or press CTRL+K, CTRL+U to uncomment the text.

Next Task in Lesson

Other Ways of Viewing the Code Window