我有一个带有列的表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();
谢谢。请告诉我是否需要更多信息。
一个帮助将不胜感激。
最佳答案
请检查以下代码:
$ipdCharges = new IpdCharges();
$ipdCharges->findOne(['doctor' => $id, 'room_category' => $this->room_name]);
关于php - Yii2:在多个where条件下使用findone()语法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27467559/