如何使用if函数从1个表到另一个表获取数据

时间:2012-12-25 14:00:40

标签: mysql database select data-retrieval

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在这里。

1 个答案:

答案 0 :(得分:0)

试试这个:

SELECT custom 
FROM table_ProductCatalog
WHERE ProductDutyType = 'Bags';