1
其實我是想達到以下描述如何通過向表單值傳遞多重搜索SPROC/UDF?
這是表參數我要傳遞給服務器
<items>
<item category="cats">1</item>
<item category="dogs">2</item>
</items>
SELECT * FROM Item
WHERE Item.Category = <one of the items in the XML list>
AND Item.ReferenceId = <the corresponding value of that item xml element>
--Or in other words:
SELECT FROM Items
WHERE Item IN XML according to the splecified columns.
我是清楚的足夠多的?
我不介意以不同於xml的方式來執行此操作。 我需要的是選擇加上兩列值的數組的值。
什麼是Items.Item的數據類型 - XML或文本? – 2009-07-26 04:38:32