Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8350543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T08:20:54+00:00 2026-06-09T08:20:54+00:00

I have the following code in my model: $sql = SELECT t1.*, t2.* FROM

  • 0

I have the following code in my model:

$sql = "SELECT t1.*, t2.* FROM Table1 t1 INNER JOIN Table2 t2 ON t1.id = t2.id AND t2.title IN (?) AND t1.type = ? ORDER BY t1.id";
$q = $this->db->query( $sql, array( $filter, $type ) );

The problem is that this query works fine if:

$filter = 'a';

But returns nothing if:

$filter = "'a','b','c','d'";

For the second case I can see that CI is escaping the $filter like this:

SELECT t1.*, t2.* FROM Table1 t1 INNER JOIN Table2 t2 ON t1.id = t2.id AND t2.title IN ('\'a\',\'b\',\'c\',\'d\'') AND t1.type = ? ORDER BY t1.id
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T08:20:56+00:00Added an answer on June 9, 2026 at 8:20 am

    That is correct behavior. CI escapes quotes before sending them to MySQL. You should probably use an array for the filter and construct something like this (not tested 😉 )

    $filter = array('a','b','c');
    $sql = "SELECT t1.*, t2.* 
         FROM Table1 t1 
         INNER JOIN Table2 t2 
             ON  t1.id = t2.id 
             AND t2.title IN (". implode(',', array_fill(0, count($filter), '?')).") 
             AND t1.type = ? 
         ORDER BY t1.id";
    //edit: check if $filter is not an array ( when it is a single value string )
    $filter = is_array( $filter ) ? $filter : array( $filter );
    $q = $this->db->query( $sql, array_merge( $filter, array( $type ) ) );
    

    You should also rewrite the query a bit:

    $sql = "SELECT t1.*, t2.* 
         FROM Table1 t1 
         INNER JOIN Table2 t2 
             ON  t1.id = t2.id 
         WHERE
             t2.title IN (". implode(',', array_fill(0, count($filter), '?')).") 
             AND t1.type = ? 
         ORDER BY t1.id";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing application using backbone.js & jquery. I have following code in model: runReport:
I have the following code in my model: attr_accessor :expiry_date validates_presence_of :expiry_date, :on =>
I have code like following: switch(sort.Column) { case code: model = (sort.Direction == SortDirection.Ascending)
i have the following code in the rails company model: class Company include Mongoid::Document
I have the following code to generate a table listing brand/model/submodel/style for a group
I have following line code in my view: <td> Model.some_instance_method(args) </td> I would like
I have the following code in a view: <div class=wrap_select> @Html.DropDownList(dateRange, new SelectList(Model.DateRange, Value,Text),
In my view I have the following code: @using (Html.BeginForm()) { @Html.TextBox(Date2, Model.Date2) <br/>
I have the following piece of code in my Model: public function getSite() {
I'm using the Code First approach and have the following Model: public class Person

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.