坑队友的小伙伴导数据到数据库时,犯了低级错误,某一部分数据的两个字段放反了位置,我只能操作一下数据库来把它们调整过来啦
借鉴实例如下:(mysql)
update product as a, product as b set a.original_price=b.price, a.price=b.original_price where a.id=b.id;
谢谢大神的文~:http://code.replays.net/201612/16474.html
坑队友的小伙伴导数据到数据库时,犯了低级错误,某一部分数据的两个字段放反了位置,我只能操作一下数据库来把它们调整过来啦
借鉴实例如下:(mysql)
update product as a, product as b set a.original_price=b.price, a.price=b.original_price where a.id=b.id;
谢谢大神的文~:http://code.replays.net/201612/16474.html