我有一个数据库中的灯具列表,数据如下:
夹具
id,hometeam,awayteam,datetime
我有一个页面,我需要以不同的方式返回这些灯具。示例如下:
return the last 5 fixtures where hometeam_id = 1
return the last 5 fixtures where awayteam_id = 3
return the last 5 fixtures where hometeam_id = 1 AND awayteam_id = 3
我的问题是,只需1次调用数据库,其中所有filteres,其中hometeam = 1或awayteam = 3,然后尝试从数组中过滤此数据,或者有3个单独的调用?
我一直在努力将一个阵列过滤到家庭团队,而只是过去了。
感谢任何帮助