原来是5位的01001,我想修改成001
怎样批量修改I7菜品的编号
- 提问者: xiaobird
- 等级:钻石会员
- 时间:2013-08-17 13:16
- 悬赏:0
- 解决时间:2013-08-17 17:14
最佳答案
此编号不能随便更改的。
要改可以到数据库中去执行sql语句:
update t_item_info SET item_subno=RIGHT(item_subno,3) WHERE item_no not LIKE 'BM%'
(注意,最后三位不能重复。)
要改可以到数据库中去执行sql语句:
update t_item_info SET item_subno=RIGHT(item_subno,3) WHERE item_no not LIKE 'BM%'
(注意,最后三位不能重复。)
- 回答者:ytkf007
- 等级:问不倒翁
- 时间:2013-08-17 14:26
其它回答 共 2 条
联系技术咨询下
- 回答者:kh359
- 等级:问不倒翁
- 时间:2013-08-17 14:15
update t_item_info set item_subno= right( item_subno ,3) 数据库查询分线器 在当前帐套的数据库执行,就可以修改了。在程序中是不能修改的。
- 回答者:赢通技术3
- 等级:皇冠会员
- 时间:2013-08-17 14:57
快到期问题