色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

sql中內聯注釋是什么

劉柏宏2年前32瀏覽0評論

sql中內聯注釋是什么?

1、單行注釋 ANSI 標準的注釋符“--” 用于單行注釋,格式:--注釋內容。 例子: use pangu-- 使用名為pangu的數據庫 declare@startdate datetime set@startdate=‘1/1/2000’ select‘Start Date:’+convert(varchar(12)@startdate) -- convert()函數用于轉換數據類型 -- 注意這里的注釋'--'符號后需要一個空格,注釋才生效 2、多行注釋 與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)

java注釋符,sql中內聯注釋是什么