所以这是我想要转换为codeigniter的以下查询:
<input type="text" class="form-control typeahead" data-provide="typeahead" id="tags" name="tags" placeholder="Tags" size="75">
答案 0 :(得分:1)
我认为您无法通过Query Builder
正确
相反 - 我建议以下
$this->db->query("DELETE FROM group_info, contacts USING group_info INNER JOIN contacts WHERE group_info.gid = ? AND contacts.gid = group_info.gid", array($gid));
在这种情况下,您将受到绑定
的保护您可以找到这些确切信息here