JOIN ... USING
の組み込みサポートはありません アクティブレコードクラスで。あなたの最善の策はおそらくjoin()
を変更するでしょう このように機能します(ファイルはsystem/database/DB_active_rec.php
です わからない場合)
public function join($table, $cond, $type = '')
{
if ($type != '')
{
$type = strtoupper(trim($type));
if ( ! in_array($type, array('LEFT', 'RIGHT', 'OUTER', 'INNER', 'LEFT OUTER', 'RIGHT OUTER')))
{
$type = '';
}
else
{
$type .= ' ';
}
}
// Extract any aliases that might exist. We use this information
// in the _protect_identifiers to know whether to add a table prefix
$this->_track_aliases($table);
// Strip apart the condition and protect the identifiers
if (preg_match('/([\w\.]+)([\W\s]+)(.+)/', $cond, $match))
{
$match[1] = $this->_protect_identifiers($match[1]);
$match[3] = $this->_protect_identifiers($match[3]);
$cond = $match[1].$match[2].$match[3];
}
// Assemble the JOIN statement
$type.'JOIN '.$this->_protect_identifiers($table, TRUE, NULL, FALSE);
$using_match = preg_match('/using[ (]/i', $cond);
if ($using_match)
{
$join .= $cond;
}
else
{
$join .= ' ON '.$cond;
}
$this->ar_join[] = $join;
if ($this->ar_caching === TRUE)
{
$this->ar_cache_join[] = $join;
$this->ar_cache_exists[] = 'join';
}
return $this;
}
したがって、これをコードで使用するだけですjoin('table', 'USING ("something")')
ただし、CIをアップグレードするときに同じことを何度も繰り返す必要がないように、クラスを変更するのではなく拡張することをお勧めします。この記事
または
または、これらすべての問題を解決したくない場合は、同じことを実行できる簡単なヘルパー関数を作成できます。
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
function join_using($table, $key)
{
$CI = get_instance();
$join = 'JOIN '. $table .' USING (`'. $key .'`)';
return $CI->db->ar_join[] = $join;
}
後で、ヘルパーをロードして、このjoin_using('table', 'key')
のような関数を呼び出すだけです。 。その後、元のjoin()
の場合と同じ結果が生成されます。 ただし、これはUSING
を提供します ON
の代わりに 状態。
例:
// $something1 and $something2 will produce the same result.
$something1 = $this->db->join('join_table', 'join_table.id = table.id')->get('table')->result();
print_r($something1);
join_using('join_table', 'id');
$something2 = $this->db->get('table')->result();
print_r($something2);