如何一次更新具有相同值的多行和数据库? Laravel

时间:2013-07-16 23:15:35

标签: php forms sql-update laravel laravel-3

我陷入了代码困境。我设法创建了一个在db中添加多个行的表单,但是当我需要将product_code用作id时,我不知道如何同时更新它们。

这是表1(产品)结构:

id | product_name | product_code
1  | Name1        | 101
2  | Name2        | 102
3  | Name3        | 103
4  | Name4        | 104

这是表2(products_ing)结构:

id | product_code | ing_name  | ing_weight
1  | 101          | INGName1  | 110
2  | 101          | INGName2  | 10
3  | 101          | INGName3  | 54
4  | 101          | INGName4  | 248

这是编辑功能:

    public function post_edit($id = null)
{

    if(Input::get('submit'))
    {
        // ID
        if($id !== null)
        {
            $id = trim(filter_var($id, FILTER_SANITIZE_NUMBER_INT));
        }


        $input = Input::all();

        $validation = Validator::make($input);

        else
        {
            foreach ($input as $key => $value)
            {
                $input[$key] = ($value !== '') ? trim(filter_var($value, FILTER_SANITIZE_STRING)) : null;
            }

            try
            {

                DB::table('products')
                    ->whereIn($id)
                    ->update(array(
            'product_name'          => $items['product_name'],
            'product_code'          => $items['product_code']
                ));


            }

    }

    return $this->get_edit($id);
}

有了这个,我只能通过id从产品表编辑* product_name *和 product_code 。 但我正在尝试使用相同的 product_code 更新db中的多行,这些行将作为id。

//我在 Google图片上找到了一个很好的图片,解释了我正在尝试做的事情,但是使用Laravel:

IMAGE LINK

有解决方案吗?提前谢谢!

1 个答案:

答案 0 :(得分:0)

假设您正在使用MySQL:让数据库的foreign key使用ON UPDATE CASCADE命令为您执行此操作。如果您更改基本product_code表格中的products,则会更新所有引用的表格。

products_ing

的CREATE-Script
...
product_code INT NOT NULL REFERENCES products(product_code) ON UPDATE CASCADE
...

作为laravel migration

Schema::create('products_ing', function($table) {
    $table->increments('id');
    $table->int('product_code');
    $table->string('ing_name');
    $table->int('ing_weight');

    /* All the other key stuff */
    $table
        ->foreign('product_code')
        ->references('product_code')
        ->on('products')
        ->onUpdate('cascade');
});