【replace 函数用法】
replace(列名,old_value,new_value)
【代码如下】
update titles_test set emp_no = replace(emp_no,10001,10005) where id=5
如果不使用replace函数
update titles_test set emp_no = 10005 where id=5 and emp_no = 10001
【replace 函数用法】
replace(列名,old_value,new_value)
【代码如下】
update titles_test set emp_no = replace(emp_no,10001,10005) where id=5
如果不使用replace函数
update titles_test set emp_no = 10005 where id=5 and emp_no = 10001