使用存储过程以json格式将行存储到另一个表中

时间:2017-01-11 12:32:44

标签: mysql stored-procedures phpmyadmin

我有一个名为product

的表
product_id    quantity     model 
   1             4          vt-32
   4             2          mt-21

产品修改表

  product_id        product_modified

我想要的是当产品表中发生任何更新时,我想在mysql中设置一个存储过程,它会像这样更新product_modified表

假设我更新了产品表

product_id    quantity     model 
   1             4          vt-31
   4             2          mt-21

然后我的product_modified表将如下所示

  product-modified table

  product_id        product_modified
     1              { old : {product_id:1,quantity:4}
                      new : {model:vt-31} }

这就是我想要的,请这是一个示例示例,表中可以有很多列,所以只看这个示例作为示例,我们可以使用存储过程mysql来做这个

0 个答案:

没有答案