我有一个菜单项列表,其中包含samsung
,htc
等,当我们点击samsung
时,它会显示所有samsung mobile
列表,如galaxy note
,s3
等与我们点击htc
时相同,它会显示htc one
,htc desire
我有问题如何通过ID
答案 0 :(得分:0)
SELECT * FROM MOBILE WHERE ID_MOBILE = {id你要搜索};
答案 1 :(得分:0)
以下查询应该有效。(例如,id = 1107)
SELECT * FROM table
WHERE ID
= 1107;
否则,您可以检查Id重复。
答案 2 :(得分:0)
按如下方式设计数据库架构:
________________ ___________________
| Manufacturer | | Products |
---------------- -------------------
| id | | id |
| manufacturer | | manufacturer_id |
---------------- | product_name | (and so on)
-------------------
在制造商表中,您将拥有Samsung htc等,而在产品表中,您将拥有制造商ID,这将是Manufacturer表中的外键。
Query
Select * from products join manufacturer on manufacturer.id = products.manufacturer_id where products.manufacturer_id = { ID To Be Searched}