我的代码如下......
$subQuery = $this->db->select('postid')
->from('sp_tag_tbl')
->where("find_in_set('" . $userid . "', userid) <> 0")
->get_compiled_select();
echo '<pre>'; print_r($subQuery); exit;
get_compiled_select嵌入\n
在将其用作另一个查询中的子查询时创建错误。请告诉我使用它的正确方法。
答案 0 :(得分:0)
\n
由于Codeigniter
查询格式而被嵌入。我们需要传递FALSE
作为第三个参数来停止格式化。