配列が複数だとin条件になる。
find('all',array(
'conditions'=>array('tel'=>array(111,222))
)
//=>where tel in (111,222)
配列が単数だと要素を()で囲んで=してくれる。
つまり副問い合わせできる。
find('all',array(
'conditions'=>array('tel'=>array('select * from foo'))
)
//=>where tel = (select * from foo)
まじかこの仕様!!