我表中的数据如下所示

Name    |   Code        |   Quantity    |
Prod1   |   PR.01.14    |   100         |
Prod1   |   PR.01.13    |   1000        |
Prod2   |   PR.02.14    |   200         |
Prod2   |   PR.02.13    |   2000        |


我想发生的是,当用户在下拉菜单中选择Prod1时,它将显示该名称的代码。

Name    |   Code        |   Quantity    |
Prod1   |   PR.01.14    |   100         |
Prod1   |   PR.01.13    |   1000        |


它全部在同一张桌子上。我怎样才能做到这一点?

最佳答案

您需要从表中获取所有列,并通过下拉菜单中的名称过滤(使用WHERE clause

select Name,
Code,
Quantity
from my_code_table
where Name = 'Prod1'

关于mysql - 根据下拉菜单中的选择名称获取项目代码,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23373384/

10-10 02:41