I am trying to write this, query with zf select but without success
我试着写这个,用zf select查询但没有成功
SELECT * FROM `subscribers` WHERE id IN (Select subscriber_id From gs_relations Where group_id=55)
I was trying with ssomething like this:
我正在尝试像这样的东西:
$gs_relations = new GSRelations();
$part = gs_relations->select()->from('gs_relations',subscriber_id')->where("group_id=$group_id");
$select = $this->select()->setIntegrityCheck(false);
return $select->where('id IN ('.$part->__toString().')');
Anybody can help me to solve the problem!?
任何人都可以帮我解决问题!?
2 个解决方案
#1
This should do it:
这应该这样做:
$gs_relations = new GSRelations();
$part = $gs_relations->select()->from('gs_relations','subscriber_id')->where('group_id = ?',$group_id);
$select = $this->select()->setIntegrityCheck(false);
$select->from('subscribers')->where('id in (' . $part->__toString() . ')');
return $select;
print_r($select->__toString());
Output:
SELECT `subscribers`.* FROM `subscribers` WHERE (id in (SELECT `gs_relations`.`subscriber_id` FROM `gs_relations` WHERE (group_id = 55)))
Do let me know how it goes, I used the below code for testing, but did not test executing the actual query as I have no such data structures:
请告诉我它是怎么回事,我使用下面的代码进行测试,但没有测试执行实际查询,因为我没有这样的数据结构:
$groupId = 55;
$part = $this->db->select()->from('gs_relations','subscriber_id')->where('group_id = ?',$groupId);
$select = $this->db->select()->from('subscribers')->where('id in (' . $part->__toString() . ')');
print_r($select->__toString());
#2
You can try this:
你可以试试这个:
$groupId = 55;
$part = $gs_relations->select()->setIntegrityCheck(false)->from('gs_relations','subscriber_id')->where('group_id = ?', $groupId);
$select = $gs_relations->select()->setIntegrityCheck(false)->from('subscribers')->where('id in ?', $part);
#1
This should do it:
这应该这样做:
$gs_relations = new GSRelations();
$part = $gs_relations->select()->from('gs_relations','subscriber_id')->where('group_id = ?',$group_id);
$select = $this->select()->setIntegrityCheck(false);
$select->from('subscribers')->where('id in (' . $part->__toString() . ')');
return $select;
print_r($select->__toString());
Output:
SELECT `subscribers`.* FROM `subscribers` WHERE (id in (SELECT `gs_relations`.`subscriber_id` FROM `gs_relations` WHERE (group_id = 55)))
Do let me know how it goes, I used the below code for testing, but did not test executing the actual query as I have no such data structures:
请告诉我它是怎么回事,我使用下面的代码进行测试,但没有测试执行实际查询,因为我没有这样的数据结构:
$groupId = 55;
$part = $this->db->select()->from('gs_relations','subscriber_id')->where('group_id = ?',$groupId);
$select = $this->db->select()->from('subscribers')->where('id in (' . $part->__toString() . ')');
print_r($select->__toString());
#2
You can try this:
你可以试试这个:
$groupId = 55;
$part = $gs_relations->select()->setIntegrityCheck(false)->from('gs_relations','subscriber_id')->where('group_id = ?', $groupId);
$select = $gs_relations->select()->setIntegrityCheck(false)->from('subscribers')->where('id in ?', $part);