Column not found: 1054 Unknown column '0' in 'field list' - Laravel - I don't have a 0 column anywhere in my code

后端 未结 4 1558
悲&欢浪女
悲&欢浪女 2021-02-13 11:24

I\'m getting this weird error:

SQLSTATE[42S22]: Column not found: 1054 Unknown column \'0\' in \'field list\' (SQL: update forum_threads set

4条回答
  •  一向
    一向 (楼主)
    2021-02-13 11:47

    I had a double condition in WHERE

    ContestPool::where(['contest_id', '=', $contest_id], ['user_id', '=', $user_id])->delete();
    

    I fixed adding brackets for both conditions

    ContestPool::where([['contest_id', '=', $contest_id], ['user_id', '=', $user_id]])->delete();
    

提交回复
热议问题