摘要:
首先group by 的简单说明: group by 一般和聚合函数一起使用才有意义,比如 count sum avg等,使用group by的两个要素: (1) 出现在select后面的字段 要么是是聚合函数中的,要么就是group by 中的. (2) 要筛选结果 可以先使用where 再用gr 阅读全文
摘要:
创建临时表 方法一: create table #临时表名( 字段1 约束条件, 字段2 约束条件, .....) create table ##临时表名( 字段1 约束条件, 字段2 约束条件, .....) eg: CREAT TABLE #TEMP( ID int IDENTITY (1,1) 阅读全文