複数の呼び出しでクエリを作成したいのですが、このコードを使用するとエラーが発生します
$command = Yii::app()->db->createCommand()
->select('*')
->from('{{table}}');
$command->where('value1 = :value1', array(':value1' => 1));
$command->where('value2 < :value2', array(':value2' => 2));
私は次のようなコードを使用できることを理解しています
$command->where('value1 = :value1 AND value2 = :value2', array(':value1' => 1, ':value2' => 2));
しかし、私は困難な条件を持っており、upperのようなその使用コードは単純です。
Codeigniterでは、これらの条件を数回使用できます
$this->db->where()