0

3 テーブルに挿入する値

表1: wp_terms

ここに画像の説明を入力

表2: wp_term_taxonomy

ここに画像の説明を入力

表3: wp_term_relationships

ここに画像の説明を入力

このような出力が必要です(カテゴリに基づいてすべてのブランドとデザイナーを取得したい)

ここに画像の説明を入力

私はこれを試しました

$sql="select term_taxonomy_id from wp_term_taxonomy where term_id=177";
mysql_query($sql);

出力251を得ました

しかし、私は表3で立ち往生しています: wp_term_relationships on how to fetch data where is object_idsimilar: 550, 540 (for category, band, designer )

4

1 に答える 1

0

クエリ shd は次のようになると思います。

SELECT m.name, t.taxanomy, t.description from wp_term_relationships r
INNER JOIN  wp_term_taxonomy t on r.term_taxonomy_id = t.term_taxonomy_id
INNER JOIN wp_terms m on m.term_id=t.term_id  
WHERE (r.object_id=550 or  r.object_id=540) and t.term_id=177
于 2012-07-18T06:59:04.863 に答える