我目前正在构建一个小游戏,以了解自己一些活跃的记录(codeigniter)和PHP。所以我对这一切都很陌生。
当然,我在路上遇到了以下挑战。
挑战是,我有两个表, User_Heroes 和英雄。 表英雄包含用户在玩游戏时可以选择的所有英雄(属于他的阵营), User_Heroes 是用户已经拥有的英雄表招募到他的服务。
我想要做的事情如下,我想做一个查询,返回当前用户在他的雇佣中没有的英雄列表。
为了简单地完成它们,我会这样做
public function get_faction_heroes($sUser, $hero_faction){
$oQuery = $this -> db
-> select(' id,
hero_name,
hero_faction,
hero_type,
hero_cost,
hero_maintenance,
hero_allowed')
-> like('hero_faction',$hero_faction)
-> get('heroes')
-> result();
return $oQuery;
}
目前我有以下的Query构建,但显然它是错的,因为它没有返回列表,因为我希望它返回。
public function get_faction_heroes($sUser, $hero_faction){
$oQuery = $this -> db
-> select(' h.id,
h.hero_name,
h.hero_faction,
h.hero_type,
h.hero_cost,
h.hero_maintenance,
h.hero_allowed')
-> like('h.hero_faction',$hero_faction)
-> where_not_in('u.hero_id', $sUser)
-> where('h.hero_allowed >', 1)
-> join('user_heroes u', 'u.hero_id = h.id', 'left')
-> get('heroes h')
-> result();
return $oQuery;
}
你可能会注意到,允许一些英雄被多次招募(hero_allowed> 1)。
也许为了进一步清理表格,我已经用当前表格添加了两张图片
答案 0 :(得分:1)
$this->db->select('*')->from('Heroes');
$this->db->where('`id` NOT IN (SELECT `hero_id` FROM `User_Heroes`)', NULL, FALSE);
$query=$this->db->get();
return $query->result();