本题不用replace会报错
题解:
update titles_test
set emp_no=replace(emp_no,10001,10005)
where id=5
REPLACE(String,from_str,to_str)
即:将String中所有出现的from_str替换为to_str
本题不用replace会报错
题解:
update titles_test
set emp_no=replace(emp_no,10001,10005)
where id=5
REPLACE(String,from_str,to_str)
即:将String中所有出现的from_str替换为to_str