sql怎么寫注釋文檔?
與C語言相同的程序注釋符號,即“/**/”。“/*”用于注釋文字的開頭,“*/”用于注釋文字的結(jié)尾,可在程序中標(biāo)識多行文字為注釋。
格式:/*注釋內(nèi)容*/
例子:
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)