ipusr
oracle的substr函数的用法
 取得字符串中指定起始位置和长度的字符串   substr( string, start_position, 
[ length ] )
 如:
     substr(
\'This is a test\'62)     would return \'is\'
     substr(
\'This is a test\'6)     would return \'is a test\'
     substr(
\'TechOnTheNet\'-33)     would return \'Net\'
     substr(
\'TechOnTheNet\'-63)     would return \'The\'
select substr(\'Thisisatest\'-42) value from dual

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-06-05
  • 2022-12-23
猜你喜欢
  • 2021-11-21
相关资源
相似解决方案