Skip to content
Read For Learn
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP
Read For Learn
  • Database
    • Oracle
    • SQL
  • C
  • C++
  • Java
  • Java Script
  • jQuery
  • PHP

Need a SQL query to update meta_key=’_price’ with value in meta_key=’_regular_price’

The reason your query doesn’t return anything fruitful is because you’re not comparing the meta_value of both of the meta_keys, you’re comparing non-numeric outcomes of meta_key = ‘x’ and meta_key = ‘y’.

SELECT post_id, 
       post_title
FROM wp_posts 
   INNER JOIN wp_postmeta 
       ON post_id = post_id
WHERE post_type="product"
   AND meta_key='_regular_price' > meta_key='_price'

What you want to be doing is comparing the meta_value for these two keys.

SELECT
  price.post_id,
  r_price,
  p_price
FROM
  (
    SELECT
      post_id,
      CAST(meta_value as SIGNED INTEGER) r_price
    FROM
      wp_postmeta
    WHERE
      meta_key = '_regular_price'
  ) regular_price,
  (
    SELECT
      post_id,
      CAST(meta_value as SIGNED INTEGER) p_price
    FROM
      wp_postmeta
    WHERE
      meta_key = '_price'
  ) price
WHERE
  price.post_id = regular_price.post_id
  and r_price > p_price

This will now give you the IDs you’re looking for. You’re best then looping through the result set and updating the post meta.

Related Posts:

  1. Most efficient way to get posts with postmeta
  2. What is the different between an attachment in wp_posts and an attachment in wp_postmeta?
  3. What is the code to get the download link for a product in WooCommerce?
  4. Query between two meta values?
  5. Get post from meta_key and meta_value
  6. Problem With Order Item Meta In Woocommerce
  7. WP_POSTMETA changes site crash
  8. Update post meta in woocommerce order frontend
  9. cleaning up safely wordpress wp_postmeta table
  10. How do I insert a new meta key / value pair, but only if another meta key is present?
  11. mass delete posts based on metadata
  12. Duplicate rows in meta table, any known relations in WC?
  13. SQL query – get a featured image’s alt / alternative text
  14. Removing Malware
  15. Which query method to use? (edit- wpdb syntax problems)
  16. How do I retrieve the slug of the current page?
  17. Get posts by meta value
  18. Explanation of update_post_(meta/term)_cache
  19. How to extract data from a post meta serialized array?
  20. How to save an array with one metakey in postmeta?
  21. WordPress is stripping escape backslashes from JSON strings in post_meta
  22. How can I get the post ID from a WP_Query loop?
  23. Check if Post Title exists, Insert post if doesn’t, Add Incremental # to Meta if does
  24. How to update_post_meta value as array
  25. Adding meta tag without plugin
  26. What’s the point of get_post_meta’s $single param?
  27. How to edit a post meta data in a Gutenberg Block?
  28. Sanitizing integer input for update_post_meta
  29. post formats – how to switch meta boxes when changing format?
  30. Execute action after post is saved with all related post_meta records (data)
  31. Lack of composite indexes for meta tables
  32. Get a single post by a unique meta value
  33. if get_post_meta is empty do something
  34. How we get_post_meta without post id
  35. How get post id from meta value
  36. Safe to delete blank postmeta?
  37. advanced custom fields update_field for field type: Taxonomy
  38. update_post_meta not saving when value is zero
  39. Export WordPress Posts and Meta Information in CSV format
  40. Content hooks vs User hooks
  41. Meta compare with date (stored as string) not working
  42. Trying to get custom post meta through Jetpack JSON API [closed]
  43. How to update/insert custom field(post meta) data with wordpress REST API?
  44. Restrict post edit/delete based on user ID and custom field
  45. get_post_meta returning empty string when data shows in the database
  46. publish_post action hook doesn’t give post_meta_data
  47. Remove WordPress.org Meta link
  48. Remove post meta keys
  49. How to access the post meta of a post that has just been published?
  50. Why time functions show invalid time zone when using ‘c’ time format?
  51. Why is get_post_meta returning an array when I specify it as single?
  52. How to update/delete array in post meta value?
  53. How to get all term meta for a taxonomy – getting term_meta for taxonomy
  54. Adding an assisting editor box to Post page
  55. How to display multiple Post meta_key/meta_values by SQL query
  56. WooCommerce conditional meta query
  57. Updating WooCommerce variable product stock issue
  58. delete unused postmeta
  59. Should I sanitize custom post meta if it is going to be escaped later?
  60. Add post meta based on another post meta value before publish post
  61. What is an efficient way to query based on post_meta?
  62. How do I retrieve multi-dimensional arrays from the wp_postmeta table, & display on a website?
  63. Front-end update_post_meta snippet displays white screen?
  64. Save both current and new version of post meta
  65. Get Advanced Custom Fields values before saving [closed]
  66. Give extra post-meta to RSS feeds
  67. How to get meta value in wp_attachment_metadata
  68. WP REST API “rest_no_route” when trying to update meta
  69. Clean up output added via wp_head()
  70. List posts under meta_value heading
  71. Why am I getting an infinite loop with have_posts?
  72. Up/Down voting system for WordPress
  73. get_post_meta – get a single value
  74. delete value 0 in post meta [closed]
  75. Can I safely delete a record, manually, in the wp postmeta table?
  76. How to store post meta in an array?
  77. What action hook updates post meta?
  78. Can’t translate the post meta data (Date) in another language
  79. how to retrieve specific product attribute value in an sql query?
  80. get_post_meta / update_post_meta array
  81. adding a URL to a post meta
  82. Query for posts from any post type but only add instock products
  83. Exclude a category from the filed under list
  84. Short of raw SQL, can I query for multiple attachment metadata that have a given array key?
  85. How do I access post meta data when publishing a new post in Gutenberg?
  86. update_post_meta() not working when used with WordPress action
  87. Using Advanced Custom Field (ACF) to insert meta description on each page
  88. Triple meta_key on custom SELECT query
  89. get_post_custom()
  90. Adding meta data to an attachment post
  91. update_post_meta not adding anything.(Nor add_post_meta)
  92. loop through all meta keys with get_post_meta
  93. Get posts by meta value with date
  94. How to add meta tag to wordpress posts filter?
  95. Are multiple values from get_post_meta guaranteed to be ordered?
  96. Identifying Importer Posts
  97. Get updated post meta on save_post action?
  98. Get WooCommerce product attribute taxonomies in a SQL query on WordPress database
  99. Add a post metadata if only the key and value does not exist
  100. get_post_meta returns bool(false)
Categories post-meta Tags post-meta, sql, woocommerce-offtopic
Trying to add a class to post links
Can’t create a subdomain network – and WP is installed in webroot, not a folder

Recommended Hostings

Cloudways: Realize Your Website's Potential With Flexible & Affordable Hosting. 24/7/365 Support, Managed Security, Automated Backups, and 24/7 Real-time Monitoring.

FastComet: Fast SSD Hosting, Free Migration, Hack-Free Security, 24/7 Super Fast Support, 45 Day Money Back Guarantee.

Recent Added Topics

  • Bug in translation system: load_theme_textdomain() returns true, files are available and accessible but the language defaults to english
  • Custom Elementor controls not appearing in the widget Advanced tab using injection hooks
  • Get the name of the template/*html file used
  • Trying to Add Paging to Single Post Page
  • Sharing media files between live and staging servers
  • How to display the description of a custom post type in the dashboard?
  • Critical error on image display
  • Copying WP data and files into new install?
  • How to determine the DirectAdmin WordPress backup date?
  • How to get list of ALL tables in the database?
© 2026 Read For Learn
  • Database
    • Oracle
    • SQL
  • algorithm
  • asp.net
  • assembly
  • binary
  • c#
  • Git
  • hex
  • HTML
  • iOS
  • language angnostic
  • math
  • matlab
  • Tips & Trick
  • Tools
  • windows
  • C
  • C++
  • Java
  • javascript
  • Python
  • R
  • Java Script
  • jQuery
  • PHP
  • WordPress