You need to add another join:
INNER JOIN $wpdb->postmeta rate_review ON p.ID = rate_review.post_id
Add the condition to your where clause:
AND rate_review.meta_key = 'rate_review'
Now you can add it to your SELECT
:
rate_review.meta_value AS rate_review
Related Posts:
- WP_Query with “post_title LIKE ‘something%'”?
- Pagination with custom SQL query
- Whats the difference between post_limits and pre_get_posts?
- Using OR conditions in meta_query for query_posts argument
- Is it possible to wrap Geo Location search around WP_Query?
- Is it possible to select against a post’s parent’s fields with WP_Query?
- Extending WP_Query — Optimise SQL query
- How to filter sql only for a specific post type
- How to make an activities stream mixing posts and comments?
- SQL Statement generated by WP_Query not producing expected results
- What is an efficient way to query based on post_meta?
- SQL query equivalent to WP User Query
- Recommended way to drop a pending query (in pre_get_posts)?
- how to retrieve specific product attribute value in an sql query?
- Filter WordPress posts by between parameter
- SQL User Query by Multiple Roles using PHP
- Advanced WP Query hogs the SQL server
- SELECT * FROM $wpdb->posts WHERE ID > 160
- How To Get Some Data From WordPress Database Using WordPress $wpdb Query?
- Query post with meta_query where date is not in future
- WP User Query get all authors with last name starting with specific letter
- Select from wp_post and multiple meta_value from wp_postmeta
- How to correctly pass values to wpdb->prepare()?
- Sort users by “birthday” using WP_User_Query
- $wpdb select date range of posts
- How To Fix WP Query Returns Results But Shouldn’t?
- List of the years with posts presented
- SQL: What is wrong with the following query (generated by WordPress WP_Query, ordering prices)
- Slow WP_Query for custom post type
- Complex WP SQL Query
- Query that loads a custom type AND posts whose ids are not inside those custom types custom fields
- Optional Meta Query
- Sorting events by descending date, and ascending time if multiple events on a date
- Editing the default wordpress search
- WP Query related posts by tags
- Order by summing multiple values
- How to extract specific post
- Woocommerce – Changing the order of the upsell products [closed]
- Changing sort order for presentation by Jetpack infinite scroll
- Include data from custom table in WP_Query
- wordpress ajax relationship query
- How to pass orderby params to $wpdb->prepare()?
- Debugging wp_query orderby for taxonomy
- Is it possible to query from external database? [duplicate]
- Include post content of linked posts in search
- Make a SQL query with wpdb in WordPress
- List of ways to access WordPress database?
- Getting rid of unwanted nonSQL syntax characters when debugging a query
- How I can change the condition or compare operator for WP_Query in pre_get_posts
- Query where ANDing slug values not working
- Slow Query On Search
- WP_Query: apply an SQL function to meta fileld value
- How to avoid filling up an array each time I run a WP_query?
- How to SQL query posts IDs by categories AND authors?
- Randomly select one of last 3 posts
- SQL query injection with fifu image
- Passing a SQL query to the WP Query
- WP_Query() not working as expected
- WP Query – grouping posts by same meta key, adding together values from another key
- Any way to use FETCH_KEY_PAIR with $wpdb?
- What is the equivalent WP_Query of a SQL Query?
- Translating WP query into to SQL query
- Filtering posts for unique titles, only the most recent
- Slow wp_posts and wp_postmeta query using Advance Custom Fields
- How to search CPTs in draft using get_page_by_title()
- Calculating efficiently on large amount of data generated by wp_query
- What argument does my function need to echo get_results() query results
- Include post_status check within $wpdb query
- Find by post_meta, then sort by post_meta, then sort by date (wp_posts)
- WP Query to order posts by multiple meta fields
- Custom WP_Query with SQL directives for getting posts by authors and terms
- How to return value from sql and display it
- orderby in WP_query doesn’t works
- WP_Query with several meta_query-statements and order by meta_value
- wpdb LIKE request shows all database data
- Convert a WP Query into a simpler SQL query to fetch only COUNT of posts
- Add custom argument to WP_Query and modify SQL where clause
- Group By query based on Custom Field
- How to make OR condition in WP_Query
- How can I use WP-CLI commands without –allow-root
- Two queries on the same page with pagination
- Best approach to create Hot and Trending sections
- creating wp query with posts with specific category
- get complex results set according to category structure
- Ignore post by meta value in the main query
- Display posts in 3 days chunk
- Empty tax_query array returns an empty array
- How to choose between hooking into per_get_posts or into parse_query
- How can I fix: “Notice: Undefined offset: 0”?
- WP_Query Pagination on multiple-loop page breaks WP or doesn’t show up
- Why isn’t my `meta_query` array functioning properly?
- Slow queries on a huge database
- Multisite pagination issue by multi query archive 404
- One WP_Query that always shows 1 post from category X and 1 post from “not in category X”?
- How to use the Term Object from a custom select field in a query
- Sort posts on custom field AND after that sort on date?
- Get last child of given page by ID
- How to query users by post count no less than 10
- query_posts, oderby meta_value & print “future” posts
- wp_query loop with compare operator simply not working, why?