'.' 附近的语法不正确- 非常简单的查询

发布于 2024-09-13 18:46:52 字数 349 浏览 2 评论 0原文

我有一个非常简单的查询,它调用一个用逗号分隔字段的 UDF。查询是

select top 10 * FROM Emails e WHERE EXISTS(SELECT TOP 1 1 FROM dbo.fn_Split(e.committees,','))

当我运行/解析它时,我得到:

Msg 170, Level 15, State 1, Line 4
Line 4: Incorrect syntax near '.'.

我认为它必须与 SQL 2000 有关。如果您将电子委员会切换为硬编码的内容(即“A、B、C、D”),它会起作用美好的。

I have very simple query that calls a UDF which splits a field by comma. The query is

select top 10 * FROM Emails e WHERE EXISTS(SELECT TOP 1 1 FROM dbo.fn_Split(e.committees,','))

When I run/parse it, I get:

Msg 170, Level 15, State 1, Line 4
Line 4: Incorrect syntax near '.'.

I think it must have something to do with SQL 2000. If you switch out e.committees for something hardcoded (i.e., 'A,B,C,D') it works fine.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

慢慢从新开始 2024-09-20 18:46:52

SQL 2000 不支持将列名传递给 TVF。这是在 SQL2005 中与 CROSS APPLY 一起引入的,

我不太确定您需要在这里做什么。 e.committees 是非 1NF 数字委员会 ID 列表吗?如果是这样

select top 10 <column-list>
FROM Emails e 
WHERE e.committees
like '%[0-9]%'
ORDER BY ...

可能会工作,但更好的解决方案是以标准化形式将它们存储在包含 email_idcommittee_id 或其他列的表中。这可能会让您的查询更容易!

SQL 2000 doesn't support passing column names to TVFs. That was brought in in SQL2005 along with CROSS APPLY

I'm not really sure what you are needing to do here. Is e.committees a non 1NF list of numeric committee ids? If so

select top 10 <column-list>
FROM Emails e 
WHERE e.committees
like '%[0-9]%'
ORDER BY ...

Might work but a better solution would be to store these in a normalised form in a table with columns email_id,committee_id or whatever. This will likely make your queries easier!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文