Getting Last Inserted Id From MySQL in Yii

前端 未结 3 1327
太阳男子
太阳男子 2021-01-03 16:15

I want to show the last login id from the database in view > _form.php file.I have made the code in _form.php file like this

  
3条回答
  •  孤城傲影
    2021-01-03 17:10

    $max = Yii::app()->db->createCommand()->select('max(id) as max')->from('TABLENAME')->queryScalar();
    

    Just add one to get the next.

提交回复
热议问题