我正在尝试通过 powerpivot 执行 sql 查询,但出现以下错误
“无法将值转换为表(大量十六进制字符串)列(名称)请求的数据类型”
SELECT [name], [table].[group],[table2].[group2] ,SUM([number]) AS number
FROM table LEFT JOIN [table2] ON table.[group ID] = [table2].id
GROUP BY [name],[table].[group],[table2].[group2]
Powerpivot 的验证器对查询很满意,并且相同的查询在 sql management studio 中运行良好,有什么想法可以解决这个问题吗?