web-dev-qa-db-ja.com

左結合クエリを作成するにはどうすればよいですか?

ノードIDがわかっている "vid"の値を取得し、 "vid"が2に等しい行の "name"の値を取得します。

単純なクエリだとしたら、どう書くかわかりません。左結合クエリの書き方がわかりません。

Drupalの「プレーン」SQLクエリは次のとおりです。

$result = db_query('SELECT tid FROM {taxonomy_index} WHERE nid = :nid', array(':nid'=>$nid));

同等の生SQLクエリは次のとおりです。

SELECT did, name FROM taxonomy_index as ti LEFT JOIN taxonomy_term_data AS ttd ON ti.tid = ttd.tid WHERE vid = 2 and nid = $nid
7
enjoylife

このような静的クエリではdb_select()を使用する必要はありません。実際には、参照すべきではありません db_selectはdb_queryよりもはるかに遅いことを考えると、なぜそれを使用したいのですか?

これをdb_query()に渡すだけで済みます。変更されたのは、プレースホルダーを追加する方法だけです。

$result = db_query('select tid,name from {taxonomy_index} as ti left join {taxonomy_term_data} as ttd on ti.tid=ttd.tid where vid=2 and nid=:nid', array(':nid' => $nid));
foreach ($result as $term) {
  // $term contains the object for the taxonomy term.
}

詳細については http://drupal.org/developing/api/database を、一般的なDrupal 6〜7のデータベース構文変換情報については my blog post を参照してください。

11
Berdir
$terms = db_select('taxonomy_index', 'ti')
  ->fields('ti', array('tid', 'name'));
$terms->leftJoin('taxonomy_term_data', 'ttd', 'ti.tid = ttd.tid');
$terms->condition('vid', 2)
  ->condition('nid', $nid)
  ->execute();

while ($term = $terms->fetch()) {
  // $term contains the object for the taxonomy term.
}
25
Sivaji
        $catalog_pagination = db_select('taxonomy_index', 'ti')
          ->fields('pimg',array('uc_product_image_target_id','entity_id'))
          ->fields('fm',array('fid','filename'))    
          ->fields('ti', array('nid', 'tid'));
        $catalog_pagination->leftJoin('node__uc_product_image', 'pimg', 'pimg.entity_id = ti.nid'); 
        $catalog_pagination->leftJoin('file_managed', 'fm', 'fm.fid = pimg.uc_product_image_target_id');  
        $catalog_pagination->condition('ti.tid', $term_id);
        $catalog_pagination->orderBy('ti.nid', 'DESC');
        $catalog_pagination = $catalog_pagination->execute();
        $total_pages = $catalog_pagination->fetchAll();
0
gurcharan