使用递归PostgreSQL查询将句子分成子句

时间:2015-05-22 14:15:31

标签: postgresql split postgresql-9.1 recursive-query sentence

PostgreSQL 中寻找一种优雅的方式,将表格中包含的拆分句子划分为子句,假设分隔符为' &#39 ;.我想使用递归查询(如here),但我无法构建它。有人可以帮忙吗?

我有下表:

id1 | yes we can
id2 | beautiful mind
id3 | birds can fly

我希望得到这样的东西:

id1 | yes we can
id1 | yes
id1 | we
id1 | can
id1 | yes we
id1 | we can
id2 | beautiful mind
id2 | beautiful
id2 | mind
id3 | birds can fly
id3 | birds can
id3 | can fly

可以访问教程here

0 个答案:

没有答案