1 NOCOUNT选项 当 SET NOCOUNT 为 ON 时,不返回计数.当 SET NOCOUNT 为 OFF 时,返回计数. eg: if object_id(N'table_test',N'U') IS not null drop table table_test go )) go ,,null) go SET NOCOUNT ON SELECT * FROM table_test GO SET NOCOUNT OFF SELECT * FROM table_test GO 2 ANS…
聚合函数 as是可以起别名的,在select和from之间的是表示列名,可以不加单引号)(聚合函数中的count不仅能对数字进行操作还能对字符型进行操作,其余的只能对数字操作) 最小值 select MIN(jiage) as 价格 from shuiguo --求最低价格 select MIN(jiage) as 价格 from shuiguo --求最低价格 最大值 select MAX(jiage) as 价格 from shuiguo --求最高的价格 总数 select COUNT…