I have an array with following values:
JavaScript
x
$test = [2,8,10,12];
and a table 'orderdetails'
in database with order_title
and order_id
columns.
What I want is to fetch order_title of every order using order_id in a loop. Can anyone help?
What I know is:
JavaScript
$test = [2,8,10,12];
foreach($test as $order_id){
$order_name = $wpdb->get_results('SELECT order_title FROM orderdetails WHERE order_id ='. $order_id);
$order_names[] = $order_name;
}
but this will make query run multiple times, any better solution?
UPDATE:
When I try to use IN(), values are getting inserted like this:
JavaScript
SELECT order_title FROM orderdetails WHERE order_id IN(2,8,10,12)
but what problem is here, query is only returning the value for first element in array that is 2
the solution needs to get applied is IN('2','8','10','12')
all the values should be in a single quote, but I don’t know how to achieve that.
Advertisement
Answer
You can use WHERE IN
:
JavaScript
$ids = implode("','", [2,8,10,12]);
$query = "SELECT order_title FROM orderdetails WHERE order_id IN ('$ids')";
$order_name = $wpdb->get_results($query);
Query :
JavaScript
SELECT order_title FROM orderdetails WHERE order_id IN ('2','8','10','12')