如何将以下查询转换为codeigniter查询

时间:2018-03-06 10:11:37

标签: php codeigniter

所以这是我想要转换为codeigniter的以下查询:

<input type="text" class="form-control typeahead" data-provide="typeahead" id="tags" name="tags" placeholder="Tags" size="75">

1 个答案:

答案 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