我有兩個表Table 1和Table,我想刪除這兩個table.I行有兩個表上相同的值,但ID是不同的,所以我想這樣的,我的 控制器,yii2:使用單個控制器操作刪除兩個表中的值?
public function actionDelete($id)
{
$this->findModel($id);
$select = Employee::find()
->select('Name')
->where(['Id' => $id])
->all();
$deluser=Employee::find()->where(['Id' => $id])->one()->delete() AND User::find()->where(['Name' =>$select])->one();
$deluser->delete();
return $this->redirect(['index','select'=>$select]);
}
PLS任何人都可以幫助我 在此先感謝
請把它放回去,你有什麼變化,你的問題 –