web-dev-qa-db-ja.com

Yii2:データベースに存在するActiveRecordモデルを確認する

DB内のモデルの存在を確認する方法は? Yii 1バージョンではそうだったUser::model()->exist()

24
Hett

Yii2では、exists()をクエリチェーンに追加できます。

_User::find()
    ->where( [ 'id' => 1 ] )
    ->exists(); 
_

(生成されたSQLは次のようになります:_SELECT 1 FROM `tbl_user` WHERE `id`=1_。)

Query->exists() from Yii2 source

_/**
 * Returns a value indicating whether the query result contains any row of data.
 * @param Connection $db the database connection used to generate the SQL statement.
 * If this parameter is not given, the `db` application component will be used.
 * @return bool whether the query result contains any row of data.
 */
public function exists($db = null)
{
    if ($this->emulateExecution) {
        return false;
    }
    $command = $this->createCommand($db);
    $params = $command->params;
    $command->setSql($command->db->getQueryBuilder()->selectExists($command->getSql()));
    $command->bindValues($params);
    return (bool) $command->queryScalar();
}
_
48
ippi
if(Mastersettings::find()->where(['id'=>1,'status'=>1])->exists())
{                    
  //....... Your code Here ......
} 

http://yii2ideas.blogspot.in/2017/06/yii2-database-operations.html

2
Shaneesh P