sql 获取WooCommerce产品类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 获取WooCommerce产品类型相关的知识,希望对你有一定的参考价值。

SELECT p.ID, p.post_title, t.name AS product_type
FROM wp_posts AS p
JOIN wp_term_relationships AS tr ON tr.object_id = p.id
JOIN wp_term_taxonomy AS tt ON tr.term_taxonomy_id=tt.term_taxonomy_id
JOIN wp_terms AS t ON t.term_id = tt.term_id
WHERE p.id = 111 AND tt.taxonomy = 'product_type'

以上是关于sql 获取WooCommerce产品类型的主要内容,如果未能解决你的问题,请参考以下文章

获取具有相似 SKU 的 WooCommerce 产品列表

使用 SQL 获取已购买商品的数量 - Woocommerce

在 WooCommerce 中获取并显示选定的变体 SKU

获取 WooCommerce 中的所有产品类别

sql WooCommerce - 将所有产品更新为应税

sql WooCommerce - 将所有产品更新为应税