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

WooCommerce के लिए श्रेणियां और उपश्रेणियाँ DB में कैसे सहेजी जाती हैं?

function getParentCategories() {
    global $wpdb;
    $sql = "SELECT term_id as id, name, slug FROM wp_terms where term_id in (SELECT term_id FROM wp_term_taxonomy where parent = 0 and taxonomy = 'category') order by name asc";
    $parents = $wpdb->get_results( $sql );
    return $parents;
}

function getChildCategories($id) {
    global $wpdb;
    $sql = "SELECT term_id as id, name, slug FROM wp_terms where term_id in (SELECT term_id FROM wp_term_taxonomy where parent = $id and taxonomy = 'category')  order by name asc";
    $children = $wpdb->get_results( $sql );
    return $children;
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. अभी सेट करें () डेटाटाइम डेटाटाइप के लिए डिफ़ॉल्ट मान के रूप में?

  2. कैसे एक प्रश्न के साथ mysql डेटा थोक अद्यतन करने के लिए?

  3. MySQL में डालने पर PHP में सिंगल कोट से बचना

  4. एक MySQL सर्वर पिंग करें

  5. MySQL कंपाउंड कुंजी के लिए LAST_INSERT_ID() चुनें। क्या यह संभव है?