Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

WooCommerce में product_type की जाँच करने के लिए SQL क्वेरी

सभी साधारण उत्पादों को सूचीबद्ध करने के लिए MySQL क्वेरी :

SELECT
    posts.ID,
    posts.post_title,
    posts.post_author,
    posts.post_date,
    posts.post_date_gmt,
    posts.post_content,
    posts.post_excerpt,
    posts.post_status,
    posts.comment_status,
    posts.ping_status,
    posts.post_password,
    posts.post_name,
    posts.to_ping,
    posts.pinged,
    posts.post_modified,
    posts.post_modified_gmt,
    posts.post_content_filtered,
    posts.post_parent,
    posts.guid,
    posts.menu_order,
    posts.post_type,
    posts.post_mime_type,
    posts.comment_count
FROM
    wp_posts AS posts
INNER JOIN wp_term_relationships AS term_relationships ON posts.ID = term_relationships.object_id
INNER JOIN wp_term_taxonomy AS term_taxonomy ON term_relationships.term_taxonomy_id = term_taxonomy.term_taxonomy_id
INNER JOIN wp_terms AS terms ON term_taxonomy.term_id = terms.term_id
WHERE
    term_taxonomy.taxonomy = 'product_type'
AND terms.slug = 'simple'
AND posts.post_type = 'product';

बस simple को बदलें AND terms.slug = 'simple' . से variable के साथ पंक्ति सभी परिवर्तनीय उत्पाद . प्राप्त करने के लिए;

मैंने इस SQL ​​​​क्वेरी का परीक्षण किया है और यह सही परिणाम प्रदर्शित कर रहा है।

आशा है कि यह मदद करता है!




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. डॉकर का उपयोग करने पर मुझे त्रुटि मिलती है:SQLSTATE [HY000] [2002] ऐसी कोई फ़ाइल या निर्देशिका नहीं

  2. Mssql स्क्रिप्ट को mysql में कैसे बदलें?

  3. डिफ़ॉल्ट मान के रूप में गलत के साथ MySQL में बूलियन कॉलम बनाएं?

  4. मैं किसी अन्य तालिका से MAX मान का उपयोग करके MySQL AutoIncrement को कैसे रीसेट कर सकता हूं?

  5. बाइट में mysql में int(11) के कॉलम का आकार क्या है?