【工具】MySQl 使用 concat 函数或 Excel 自定义回滚语句

前言

写更新语句的时候,希望能保留回滚的能力,可以尝试使用 concat 语句。先拷贝出回滚语句,再执行脚本。

需求

  • 已知person表
    【工具】MySQl 使用 concat 函数或 Excel 自定义回滚语句_第1张图片
  • 为所有名称增加test字段

concat 实现

SELECT
	id,
	NAME,
	concat( "update person set name = 'test_", NAME, "' where id = ", id, ";" ) AS script,
	concat( "update person set name = '", NAME, "' where id = ", id, ";" ) AS rollback_script 
FROM
	person;

【工具】MySQl 使用 concat 函数或 Excel 自定义回滚语句_第2张图片

  • 执行script 前拷贝rollback_script

Excel 实现

  • excel 的功能会更强大点,可以自定义更新值
    在这里插入图片描述
  • script 公式 (&是连接符)
="update person set name = '"&B2&"' where id ="&A2&";"
  • rollback script 公式
="update person set name = '"&B2&"' where id ="&A2&";"

你可能感兴趣的:(工具,Excel,mysql,数据库)