2
$submodules = Modules::find(
    array(
        'moduleid in (:mods:) and parentid = :parentid:',
        'bind' => array(
            'mods' => '1,2',
            'parentid' => 1
        ),
        'bindtype' => array(
            'mods' => Column::BIND_PARAM_STR,
            'parentid' => Column::BIND_PARAM_INT
        )
    )
);

我希望 sql 是“从模块中选择 * (1,2) 和 parentid = 1 的模块”但结果不正确。

帮助请。

4

1 回答 1

1

转义 :mods: 将产生 '1,2' 因此: select * from modules where moduleid in ('1,2') and parentid = 1

您需要为“in”中的每个值使用绑定参数:

$submodules = Modules::find(array(
  'moduleid in (:firstMod:, :secondMod:) and parentid = :parentId:',
  'bind' => array(    
    'firstMod' => 1,
    'secondMod' => 2,
    'parentId' => 1
  )
));

在这种情况下最好使用 QueryBuilder

于 2013-05-14T17:24:20.827 回答