I have thi next code, but he doesn't work:

$select_sell = $this->select();
$select_sell->from($this->_name, array('rank_id'))
            ->where('rank_id = ?', $id)
            ->where('type = ?', 'must_sell');
$result = $this->fetchAll($select_sell)->count();

I need to make this query ... WHERErank_id= $id ANDtype= 'must_sell'..

Thank toy.

link|improve this question

2  
Doesn't work is not a helpful description. Please state what doesn't work and if there is any errors. Make sure you actually have error reporting enabled. Use assemble() to get the assembled query string and change the second where to read 'type = "must_sell"' since the value isn't variable. – Gordon Sep 3 '10 at 9:33
feedback

2 Answers

up vote 1 down vote accepted

As gordon said in his comment, type isn't a variable:

$select_sell = $this->select();
$select_sell->from($this->_name, array('rank_id'))
            ->where('rank_id = ?', $id)
            ->where('type = "must_sell"');
$result = $this->fetchAll($select_sell)->count();
link|improve this answer
My comment wasnt to suggest that this would solve the issue though. Just that it's unneeded. – Gordon Sep 3 '10 at 10:22
This works pretty. – plutov Sep 6 '10 at 6:18
feedback

Run into this problem a few times before. You can solve it like this

$select_sell = $this->select();
$select_sell->from($this->_name, array('rank_id'))
    ->where("(rank_id = $id AND type = 'must_sell')");
link|improve this answer
Sorry, but this returns a error:SQLSTATE[21000]: Cardinality violation: 1241 Operand should contain 1 column – plutov Sep 3 '10 at 9:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.