执行透视时出现无用的错误消息
当我编写以下查询时:
SELECT id,status
FROM dbo.View_Request
PIVOT ( COUNT(id) FOR status IN([CL],[HOLD])) AS pvt
我收到一条模糊的错误消息:
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near '('.
我到底做错了什么?
When I write the following query:
SELECT id,status
FROM dbo.View_Request
PIVOT ( COUNT(id) FOR status IN([CL],[HOLD])) AS pvt
I get a vague error message:
Msg 102, Level 15, State 1, Line 3
Incorrect syntax near '('.
What exactly am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的数据库可能处于 SQL Server 2000 兼容级别。您需要修复该问题,然后您将收到这些其他错误消息。
您可以在
SELECT
列表中使用的唯一列是CL
和HOLD
Your database is presumably at SQL Server 2000 compatibility level. You need to fix that then you will get these other error messages instead.
The only columns you will have available to use in the
SELECT
list areCL
andHOLD