我在aspx頁面中有兩個下拉框。一個用於位置,另一個用於供應商列表。 我從這個如何更改一個下拉列表中的值根據aspx中另一個下拉列表中的值而改變
SELECT Location_ID LocationID, Location_Name LocationDesc, BusinessID
FROM inventory.tbl_location
union
SELECT '' LocationID,'select a location' LocationDesc,0 BusinessID
ORDER BY BusinessID,Location_Name
獲取的位置的下拉列表中值我能夠搶在供應商下拉列表中所有記錄,從這個名單:
SELECT p.PayeeID, isnull(Name1_Last,'') + ', ' + isnull(Name1_First,'') VendorName, b.BusinessID
from tblVendor_Payees p join tblVendor_Business b
on p.PayeeID=b.PayeeID
where VendorType=1
order by isnull(Name1_Last,'') + ', ' + isnull(Name1_First,'')
我想只有那些列出基於位置下拉列表的供應商記錄。怎麼做?。
你需要加入tblContractTypes和你從 –