duanguan3863 2015-07-31 02:30
浏览 251
已采纳

SQLSTATE [23000]:完整性约束违规:1062重复条目

I have a problem regarding my update, if i have 1 row of data my update works but if I have 2 rows data, I got this problem.

SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 2 Primary

myController.php

public function update(Partner $partner) {
    $partner->update(array_except(Input::all(), '_token'));
}

Any idea whats the problem?

  • 写回答

3条回答 默认 最新

  • dongtaigan1594 2015-08-07 05:12
    关注

    I changed the query to this

    public function UpdateItems(Item $updateitem, $item_id){ $sname = Input::get('subcategory'); $subname = ItemSubcategory::where('name',$sname)->first(); $input = Input::except('_token'); $updateitem->where('item_id', $item_id) ->update($input, ['subcategory' => $subname->id]); }

    and now my code is working but i have a little problem. All columns can be updated except for the subcategory column. Now my question is that is it possible to update the subcategory column together with the other columns using

    update($input, ['subcategory' => $subname->id])
    

    or is there any way to update the subcategory?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 请问一下这个运行结果是怎么来的
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决