PostgreSQL模仿MySQL的substring_index方法

Postgresql中没有substring_index方法,在做一个项目迁移的时候,需要类似MysqL的substring_index方法。从网上找了相关代码。如下:

CREATE OR REPLACE FUNCTION substring_index(varchar,varchar,integer) RETURNS varchar AS $$ DECLARE tokens varchar[]; length integer ; indexnum integer; BEGIN tokens := pg_catalog.string_to_array($1,$2); length := pg_catalog.array_upper(tokens,1); indexnum := length - ($3 * -1) + 1; IF $3 >= 0 THEN RETURN pg_catalog.array_to_string(tokens[1:$3],$2); ELSE RETURN pg_catalog.array_to_string(tokens[indexnum:length],$2); END IF; END; $$ IMMUTABLE STRICT LANGUAGE PLPGsql;

相关文章

来源:http://www.postgres.cn/docs/11/ 4.1.1. 标识符和关键词 SQL标识符和关键词必须以一个...
来源:http://www.postgres.cn/docs/11/ 8.1. 数字类型 数字类型由2、4或8字节的整数以及4或8...
来源:http://www.postgres.cn/docs/11/ 5.1. 表基础 SQL并不保证表中行的顺序。当一个表被读...
来源:http://www.postgres.cn/docs/11/ 6.4. 从修改的行中返回数据 有时在修改行的操作过程中...
来源:http://www.postgres.cn/docs/11/ 13.2.1. 读已提交隔离级别 读已提交是PostgreSQL中的...
来源:http://www.postgres.cn/docs/11/ 9.7. 模式匹配 PostgreSQL提供了三种独立的实现模式匹...