如何在查询中多次使用相同的参数
我想在 SqlCE 数据库上运行类似于此的查询:
SELECT t.Field1, t.Field2
FROM MyTable t
WHERE t.Field1 = @Param
UNION ALL
SELECT t2.Field1, t2.Field2
FROM MyOtherTable t2
WHERE t2.Field1 = @Param
但是,运行此查询会导致错误消息:
不存在重复的参数名称 允许。 [参数名称=@Param]
当然,解决方法是定义 @Param1
和 @Param2
并为它们分配相同的值,但这对我来说感觉有点脏。 对于这个问题有更干净的解决方法吗?
I want to run a query similar to this one on a SqlCE database:
SELECT t.Field1, t.Field2
FROM MyTable t
WHERE t.Field1 = @Param
UNION ALL
SELECT t2.Field1, t2.Field2
FROM MyOtherTable t2
WHERE t2.Field1 = @Param
However, running this results in the error message:
Duplicated parameter names are not
allowed. [ Parameter name = @Param ]
A workaround is of course to define @Param1
and @Param2
and assign them the same value, but this feels a bit dirty to me. Is there a cleaner workaround for this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
仅将参数添加到参数集合中一次。 您可以在查询中使用它任意次数。
Add the parameter only once to the parameter collection. You can use it how may times you like in the query.
我从未使用过 SQL CE,但也许这会起作用:
I've never used SQL CE, but maybe this will work: