5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Cake】副問い合わせ

Posted at

配列が複数だと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)

まじかこの仕様!!

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?