昨天调试一个表值函数,结果出现了这个错误. mplicit conversion of varchar value to varchar cannot be performed because the collation of the value is unresolved due to a collation conflict. 奇怪的是,这个函数之前都运行着没问题.经过一番查询,发现是某个字段的SQL Collation修改了导致的. 这个字段刚好是前段时间,导入一些中文数据进行测试的,一开…
------over的两种常用的用法--- --第一种分组 当然要注意了,这里的分组并不是实际的分组,而是根据你的业务需求而坐的临时分组 select roomguid,Room, avg(total) over(partition by bldGUID) as 楼栋均价, AVG(total) over(partition by ProjGUID) as 项目均价 from p_room --产生行号 用来产生行号的时候,over()一定要order by select ROW_N…