様、
私は問題に直面しており、それを以下に示します: $this->db->select('*')->from('table'); の出力に対して where 操作を実行したい cond1 が満たされる場合のみ
$result = $this->db->select('*')->from('table');
if(cond1)
{
I want to perform $result->where(); operation
}
それは可能ですか、それを行うための正確な構文は何ですか