https://blog.csdn.net/jcx5083761/article/details/40185795

 

 

 --移除回车符

update master_location
SET street_number = REPLACE(street_number, CHAR(13), '')

--移除换行符

update master_location
SET street_number = REPLACE(street_number, CHAR(10), '')

相关文章:

  • 2022-12-23
  • 2021-12-06
  • 2022-12-23
  • 2022-01-03
猜你喜欢
  • 2022-12-23
  • 2022-01-07
  • 2021-08-01
  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
相关资源
相似解决方案