SQL 使用字符串(如 IN 表达式)从 TableAdapter 获取特定的多个 ID
我在程序中使用了数据集设计器。在我的数据库中,我有一个主键id_item
,我想从数据库表(db)中获取一些特定的ID。使用来自数据集设计器的添加查询.. |表| tableadapter。
它创建了这样的查询:
SELECT
ID_Item, Item, SKU, Link, Cost, Notes,
fk_ID_Vendors, fk_ID_Process, fk_ID_ItemType,
Image, Valid, PNo, Purchase, CNo, Container, Dimension, fk_ID_Build
FROM
Items
WHERE
ID_Item IN (@ID_ItemsLIST)
我命名了此fillmethodname = fill_id_specific。我将参数(ID_ITEMSLIST)更改为字符串。
- 如果id_itemslist =“ 32” - >输出= 1行,
- 如果id_itemslist =“ 32,34” - >输出= 1行,
我尝试了许多不同的迭代,使用撇号等。但是它将行不通。只是有一种简单的方法来做到这一点?
我可以使用语句编写单独的SQL连接。有效,很容易)。数据集设计人员中的某些东西并没有让这个简单的语句工作... :(我想将其封装在数据集设计器中...
真诚地; 亚历克斯。
I'm using a DataSet Designer in my program. In my database I have a primary key ID_Item
and I want to fetch some specific ID's from the database table (dB). Using the Add Query.. from the DataSet Designer | Table | TableAdapter.
It creates a query like this:
SELECT
ID_Item, Item, SKU, Link, Cost, Notes,
fk_ID_Vendors, fk_ID_Process, fk_ID_ItemType,
Image, Valid, PNo, Purchase, CNo, Container, Dimension, fk_ID_Build
FROM
Items
WHERE
ID_Item IN (@ID_ItemsLIST)
I've named this FillMethodName = Fill_ID_Specific. I've changed my Parameter (ID_ItemsList) to a String.
- if ID_ItemsList = "32" -> output = 1 row,
- if ID_ItemsList = "32, 34" -> output = 1 row
I've attempted many different iterations, using apostrophes, etc.. but it just will not work. There just must be a simple way to do this?!
I can write a separate SQL connection, using statement. Which works, easy enough). Something within the DataSet designer is not letting this simple statement work... :( I want to encapsulate this into the DataSet Designer...
Sincerely;
Alex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用函数
ufn_textaslist
将文本转换为list如何使用此函数?
output
如何与代码集成?
You can use function
ufn_TextAsList
for convert text to listHow to use this function ?
Output
How to integrate with your code ?