1

table_Pricing

ProductType = Lookup from table ProductCatalog.ProductDutyType (dropdown combo)

义务=?

表_产品目录

列-

ProductDutyType-   Custom
Pens-               15
Bags-                5
Organizers-         10
Dresses-             3

我需要的是,当我在 table_Pricing 的产品类型下拉列表中进行选择时,职责列应根据所选产品类型从 table_ProductCatalog 的自定义列中获取值。

如果我在表 Pricing 中选择 Product type,则 Duty 列应比较 2 个表并在 Bags 的自定义列中显示值,即 5。

希望有人理解我。请帮忙,Newbee在这里。

4

1 回答 1

0

尝试这个:

SELECT custom 
FROM table_ProductCatalog
WHERE ProductDutyType = 'Bags';
于 2012-12-25T14:23:25.923 回答