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 8397537
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T20:48:57+00:00 2026-06-09T20:48:57+00:00

This is the query I use: $idList=32,33,21,11; $query = SELECT post_id, meta_value FROM wp_posts

  • 0

This is the query I use:

$idList="32,33,21,11";          
$query = "SELECT post_id, meta_value FROM wp_posts 
          WHERE meta_key = 'grade' AND post_id IN ($idList)";

As a result, the where clause become keys:

$result = array(
              0 => array('post_id'=> 32, 'meta_value'=>5),
              1 => array('post_id'=> 33, 'meta_value'=>2),
              2 => array('post_id'=> 21, 'meta_value'=>8),
           )

I desire to have a result like this:

$result = array(
              0 => array( 32 => 5 ),
              1 => array( 33 => 2 ),
              2 => array( 21 => 8 ),
           )

How to achieve this? Thanks!

  • 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-09T20:48:59+00:00Added an answer on June 9, 2026 at 8:48 pm

    Loop through the result set like this:

    $_final = array(); // new result set
    
    foreach ($result as $value)
      $_final[] = array($value['post_id'] => $value['meta_value']);
    
    unset($result); // free memory from old result set
    

    UPDATE: If there are too many element and you afraid of memory consumption, you can do it the following way:

    $_final = array(); // new result set
    
    foreach ($result as $key => $value) {
      $_final[] = array($value['post_id'] => $value['meta_value']); // composing new data
      unset($result[$key]); // unsetting already parsed value
    }
    
    unset($result); // freeing memory from old result set
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

well this is my problem i use 2 source first query (select * from
The answer to another SO question was to use this SQL query: SELECT o.Id,
now i use this code: $welcome_text = mysql_query(SELECT * FROM `text` WHERE `name` =
When I try this query it works: SELECT * FROM tbl_Users WHERE UserId IN
Maybe it's wrong but I always use this query for my app: cme_only =
I need to rewrite this query and I'm not allowed to use a subquery.
I want to use this SQL query to get only the records between 8
I am trying to use this MySQL query: SET @a:=0; UPDATE tbl SET sortId=@a:=@a+1
I am trying to use some parameters in my sql query like this; Answer_table
I have a problem. I want to use a LINQ query against this database:

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.