DECLARE @t table(s  VARCHAR(200))
insert into @t
SELECT 'Robot.H'
UNION ALL 
SELECT 'Robot.HaaRobot.HbbRobot.H'

SELECT s,(LEN(s+'*')-LEN(REPLACE(s,'Robot','')+'*'))/LEN('Robot')
from @t

相关文章:

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