select position('.' in '1.1.2.10');

select split_part('1.1.2.10','.',length('1.1.2.10') - length(translate('1.1.2.10','.',''))+1);

select split_part('1.1.2','.',length('1.1.2') - length(translate('1.1.2','.',''))+1);


select length(translate('1.1.2.10',’.’,’a’))+1 as num

select translate('1.1.2.10','.','')

select strpos('1.1.2.10','.')

select instr('1.1.2.10','.',1,3)

 

select length('1.1.2.10') - length(translate('1.1.2.10','.',''))

相关文章:

  • 2021-08-21
  • 2022-12-23
  • 2022-03-05
  • 2021-04-15
  • 2021-12-24
  • 2022-01-13
猜你喜欢
  • 2021-07-05
  • 2022-02-15
  • 2022-12-23
  • 2021-12-27
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案