SQL中的注释
SQL中的注释在t-sql中,注释表示由用户提供的文本,服务器不对注释进行计算。
我们可以将注释写成单独一行,也可以把注释写在t-sql语句的后面,还可把注释嵌套在t-sql语句块中。
use db--使用名为pangu的数据库 declare @startdate datetime set @startdate=‘1/1/2000’ select ‘Start Date:’+convert(varchar(12)@startdate) --convert()函数用于转换数据类型
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)