我有以下表格:
systems
-----------
id
name
price
online
productid
specifications
-------------
id
systemid
type
componentid
quantity
components
-------------
id
name
brand
type
description
我需要使用多个选项过滤这些表。每个系统都有多个规格行,每个“规格”行都链接到相应的“组件”行。
我的问题是这样的:
我需要能够根据表连接按多个属性过滤系统。我一直在使用允许我 1 个搜索选项的代码,但没有进一步的:
select
`systems`.`id`,
`systems`.`name`,
`specifications`.`type`
from `systems`
join specifications
on `systems`.`id` = `specifications`.`systemid`
join components
on `specifications`.`componentid` = `components`.`id`
where
`specifications`.`type` = 'cpu'
and `components`.`brand` = 'amd'
所以,这会让我做一个连接,其中规格类型是 CPU,品牌是 AMD,但是如果我添加其他东西来寻找,就像specifications.type ='graphics' AND components.brand = 'nvidia'
它不起作用一样。我认为这是 join 工作方式所固有的,正如我所说,我无法在这里阐明这个问题,因为我对这些更复杂的数据库事务很陌生,并且非常感谢你指出正确的方向!
我正在使用 CodeIgniter 作为我的框架,我想尝试通过 MySQL 来了解这一点,而不是在可能的情况下在 PHP 中进行 - 因为我想更好地了解这里发生的事情。