單行注釋
ANSI 標準的注釋符“--” 用於單行注釋,格式:--注釋內容。
例子:
use pangu-- 使用名為pangu的資料庫
declare@startdate datetime
set@startdate=‘1/1/2000’
select‘Start Date:’+convert(varchar(12)@startdate)
-- convert()函式用於轉換數據類型
-- 注意這裡的注釋'--'符號後需要一個空格,注釋才生效
多行注釋
與C語言相同的程式注釋符號,即“/**/”。“/*”用於注釋文字的開頭,“*/”用於注釋文字的結尾,可在程式中標識多行文字為注釋。
格式:/*注釋內容*/
例子:
DECLARE @myvariable DATETIME
/*
The following statements retrieve the current date and time and extract the day of the week from the results.
*/
SELECT @myvariable=GETDATE()
SELECT DATENAME(dw,@myvariable)
使用快捷鍵
sql server 2005 注釋快捷鍵 選中語句行 先按ctrl+k 再按ctrl+c
sql server 2005 取消注釋快捷鍵 選中語句行 先按ctrl+k 再按ctrl+u