2021
02-02
02-02
postgresql 中position函数的性能详解
起因:postgresql中position函数提供从头查找返回第一个匹配到字符串的下标。而我需要返回从后向前查找第一个匹配到的坐标,但是postgressql并未提供相关函数,所以自己写了如下代码提供相关功能:CREATEORREPLACEFUNCTIONlastindexof(text,character)RETURNSintegerAS$BODY$beginif$1isnullthenreturnNULL;endif;foriinreverselength($1)..1loopifsubstr($1,i,1)=$2thenreturni;endif;e...
继续阅读 >