Insert Into FLOW_ACTION (
flow_node_id,
flow_action_code,
flow_action_name,
flow_action_event,
flow_action_remark,
flow_action_order,
flow_action_image,
flow_action_flag,
flow_action_default
)Values(
#FLOW_NODE_ID#,
#FLOW_ACTION_CODE#,
#FLOW_ACTION_NAME#,
#FLOW_ACTION_EVENT#,
#FLOW_ACTION_REMARK#,
#FLOW_ACTION_ORDER#,
#FLOW_ACTION_IMAGE#,
#FLOW_ACTION_FLAG#,
#FLOW_ACTION_DEFAULT#
)
select @@IDENTITY as value
Update FLOW_ACTION Set
flow_node_id=#FLOW_NODE_ID#,
flow_action_code=#FLOW_ACTION_CODE#,
flow_action_name=#FLOW_ACTION_NAME#,
flow_action_event=#FLOW_ACTION_EVENT#,
flow_action_remark=#FLOW_ACTION_REMARK#,
flow_action_order=#FLOW_ACTION_ORDER#,
flow_action_image=#FLOW_ACTION_IMAGE#,
flow_action_flag=#FLOW_ACTION_FLAG#,
flow_action_default=#FLOW_ACTION_DEFAULT#
flow_action_id=#FLOW_ACTION_ID#
Delete From FLOW_ACTION
flow_action_id=#FLOW_ACTION_ID#