磁卡改为IC卡(V6系列、Z7系列、V9商业、V10系列)

2019-03-04 22:36:39

1.进入后台,点"帮助"->"关于本软件"->按CTRL+双击图片,出现sql语句输入
2.点插入及更新,点数据库1,在框中输入以下语句,点执行:

A、把某张IC卡改成 磁卡((不管有没有发行))

update  pos_t_vip_info 
set vip_save='0'
where vip_saVe='1' and card_id='卡号'

B、把所有IC卡都改成磁卡((不管有没有发行))

update  pos_t_vip_info 
set vip_save='0'
where vip_saVe='1'

C、把所有未发行的IC卡改为磁卡

update  pos_t_vip_info 
set vip_save='0'
where vip_saVe='1' and card_status='3'

D、把某一个分类的IC卡改为磁卡(不管有没有发行)

update  pos_t_vip_info 
set vip_save='0'
where vip_saVe='1' and card_type='两位会员分类编号'

E、把某一个分类未发行的IC卡改为磁卡

update  pos_t_vip_info 
set vip_save='0'
where vip_saVe='1' and card_status='3' and card_type='两位会员分类编号'