...
update t_schedule set c_status='DEACTIVE' and , c_enable='DEACTIVE',该条SQL会修改全部计划的状态为禁用。如果不需要停止某些,可以在后面加上where c_id not in ('id1', 'id2')
...
...
update t_schedule set c_status='DEACTIVE' and , c_enable='DEACTIVE',该条SQL会修改全部计划的状态为禁用。如果不需要停止某些,可以在后面加上where c_id not in ('id1', 'id2')
...