Asp.net:如何对数据源中的查询的整数字段使用 jolly char
大家好,我的问题是:如果我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这似乎是“当你只有一把锤子时,一切看起来都像钉子”的经典案例。 如果您尝试匹配“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 meantSomeFieldID % 10 = 3
.您指的是 LIKE 语句吗?
这将返回包含 FilterID 内容的任何记录。
假设 FilterID 是一个字符串。
Do you mean the LIKE statement?
This will return any record that contains the contents of FilterID.
Assuming FilterID is a string.