_代表空格

ltrim去掉左边空格

ltrim("_hello_sql_ ");

变为hello_sql_

rtrim去掉右边空格

ltrim("_hello_sql_")

变为  _hello_sql

可以用replace去掉所有空格

replace("_hello_sql_",' ',");

变为hellosql

相关文章:

  • 2021-12-17
  • 2022-02-05
  • 2022-02-09
  • 2021-06-09
  • 2021-11-25
  • 2022-02-11
  • 2021-11-01
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-20
  • 2022-01-07
相关资源
相似解决方案