从mysql中显示更多的一个类别

时间:2015-03-07 04:19:20

标签: php database

当我在数据库中放置一个项目时,我可以选择不同的“使用”类别。

例如我已经习惯,勉强使用,粗糙。我希望所有这些都显示在同一页面上。

现在我有了这段代码

$SQL_GetEquipment = "SELECT * FROM `new_equip` WHERE `condition`='Used' $SQLCat $Limit";

有办法吗?

3 个答案:

答案 0 :(得分:1)

...where (`condition`='Used' OR `condition`='Barely Used' OR `condition`='Rough')...

答案 1 :(得分:1)

试试这个..

$SQL_GetEquipment = "SELECT * FROM `new_equip` WHERE `condition` LIKE '%Used' OR `condition` LIKE '%Barely Used%' OR `condition` LIKE '%Rough%' $SQLCat $Limit";

答案 2 :(得分:1)

Check this link你只是使用OR条件它会帮助你

$SQL_GetEquipment = "SELECT * FROM new_equip WHERE condition='Used' or condition='Barely Used' OR condition='Rough'  $SQLCat $Limit";