table_Pricing

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


责任=?

table_ProductCatalog

列-

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


我需要的是,当我在table_Pricing的产品类型下拉列表中进行选择时,值勤列应从table_ProductCatalog的自定义列中获取值,具体取决于所选的产品类型。

如果我在“表定价”中选择“产品类型”,则“责任”列应比较2个表并在“袋”的自定义列中显示值为5。

希望有人了解我。请帮助,Newbee在这里。

最佳答案

尝试这个:

SELECT custom
FROM table_ProductCatalog
WHERE ProductDutyType = 'Bags';

08-19 00:42