非典型T_SQL的总结
摘要:
------over的两种常用的用法--- --第一种分组 当然要注意了,这里的分组并不是实际的分组,而是根据你的业务需求而坐的临时分组 select roomguid,Room, avg(total) over(partition by bldGUID) as 楼栋均价, AVG(total) over(partition by ProjGUID) as 项目均价 from p_room... 阅读全文
posted @ 2016-03-28 10:05 LeLe.xu 阅读(419) 评论(0) 推荐(0) 编辑