sql >> Database teknologi >  >> RDS >> Mysql

Yii2:ikke i stand til at opdatere kolonneværdien med + 1

Prøv dette:

 Yii::$app->db->createCommand("UPDATE room_types SET total_booked=total_booked+1 WHERE room_type = '$model->room_type' ")->execute();

ELLER

public function actionCreate()
    {
        $model = new CreateBookings();
        if ($model->load(Yii::$app->request->post())) {

    $RoomType = new room_types(); // room type replace with model name
    $RoomType->updateCounters(['total_booked' => 1]);

      $model->save();
            return $this->redirect(['view', 'id' => $model->id]);
        } else {
            return $this->render('create', [
                'model' => $model,
            ]);
        }
    }

Officielt link



  1. Relationel algebra

  2. Indsæt en arabisk tekst MySQL

  3. standard en kolonne med tom streng

  4. PL/pgSQL anonym kodeblok