Asp.net:如何对数据源中的查询的整数字段使用 jolly char

发布于 2024-07-27 12:23:37 字数 246 浏览 7 评论 0原文

大家好,我的问题是:如果我在 ASP.NET 中有一个带有以下选择命令的 SqlDatasource 或 AccessDatasource: SELECT * FROM Mytable WHERE SomeFieldID=@FilterID

SomefieldID 是一个整数

我想使用 jolly char (* 或 %) 来显示所有数据...我该怎么办?

感谢大家的帮助...

再见 斯蒂吉

Hy guys, my question is: if i have in asp.net, a SqlDatasource or AccessDatasource with the following select command:
SELECT * FROM Mytable WHERE SomeFieldID=@FilterID

SomefieldID is an integer

And i would like to use the jolly char (* or %) to show all datas... how can i do?

Thanks to everybody will help...

Bye
Stighy

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

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

发布评论

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

评论(2

温柔少女心 2024-08-03 12:23:37

这似乎是“当你只有一把锤子时,一切看起来都像钉子”的经典案例。 如果您尝试匹配“1%%”,您实际上的意思是 >=100 且 <=199。 同样,当您尝试匹配 SomeFieldID LIKE "*3" 时,您实际上的意思是 SomeFieldID % 10 = 3

It seems like a classic case of "when all you have is a hammer, everything looks like a nail". If you are trying to match "1%%" you actually mean >=100 and <=199. Similarly, when you try to match SomeFieldID LIKE "*3", you actually meant SomeFieldID % 10 = 3.

别理我 2024-08-03 12:23:37

您指的是 LIKE 语句吗?

SELECT * FROM Mytable WHERE cast(SomeFieldID AS varchar(100)) LIKE '%' + @FilterID + '%'

这将返回包含 FilterID 内容的任何记录。

假设 FilterID 是一个字符串。

Do you mean the LIKE statement?

SELECT * FROM Mytable WHERE cast(SomeFieldID AS varchar(100)) LIKE '%' + @FilterID + '%'

This will return any record that contains the contents of FilterID.

Assuming FilterID is a string.

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