在整数列上参数化 SQL IN 子句?
Jeff Atwood 提出了关于参数化 SQL IN 子句的原始问题,但我想做这是一个整数列。如果我尝试原始帖子中的代码,我会得到以下异常,这是有道理的:
转换时失败 varchar 值 '%|'数据类型 int。
有人尝试过这个吗?
Jeff Atwood asked the original question about parameterizing a SQL IN clause, but I want to do this with an integer column. If I try the code from the original post I get the following exception, which makes sense:
Conversion failed when converting the
varchar value '%|' to data type int.
Anyone try this before?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 Jørn Schou-Rode 在评论中给出了最佳答案,他链接到这个问题的最佳答案:
参数化 SQL IN 子句?
I think that Jørn Schou-Rode gave the best answer in the comments where he links to the top answer from this question:
Parameterizing a SQL IN clause?