web-dev-qa-db-ja.com

Yii2:複数のwhere条件でのfindone()構文

列のあるテーブルipd_chargesがあります

テーブル-ipd_charges

id    doctor room_category charges_cash charges_cashless
1        1          1              200            300
2        1          2              300            400

テーブル-patient_admission

id patient_name tpa_name(if not null, equivalent to charges_cashless)
1        1        Null
2        2         1

テーブルdaily_ward_entry

id  patient_name  room_name  doctor_name charges ( from ipd charges)
1          1           1           1         200
2          2           2           1         400

私は失敗しているこのクエリを使用しようとしています:

$model = \app\models\IpdCharges::find()
         ->where(['doctor'=>$id])
         ->andwhere(['room_category'=>$this->room_name])->one();

ありがとう。さらに情報が必要な場合は教えてください。

助けていただければ幸いです。

5
Pawan

以下のコードを確認してください:

$ipdCharges = new IpdCharges();
$ipdCharges->findOne(['doctor' => $id, 'room_category' => $this->room_name]);
11
toanlb