Postgresql函数类似于Excel中的Find()?

时间:2016-08-08 18:49:45

标签: postgresql postgresql-9.3

如何在Postgresql-9.3 +

中找到从指定索引开始的字符串的位置

实施例

find('ranranran','an',1) should output 2
find('ranranran','an',3)  => 5 
find('ranranran','an',6)  => 8

1 个答案:

答案 0 :(得分:0)

我找到了答案,只想发布。

strpos(substr('withintext',pos),'texttofind') + (pos-1)