如何计算与PostgreSQL中的表项数?(How to count the number of t

2019-10-29 22:01发布

alldp字符内varraying

"K409,K358,K353,L059,R100,L050,K610,K352,K429,C181,D129,K565,T8558,K560,K402,A045,K661,I841,I848,Z433"

我可以数得过来。 这里是20。

但是,如果我想要写在Postgres的一份声明中拿到20,我应该怎么办?

Answer 1:

可以将字符串分割成一个数组,然后计数所得到的数组中的元素:

select array_length(string_to_array(the_column, ','), 1)
from the_table;

但是,你真的应该考虑固定的数据模型。 在一列中存储逗号分隔值几乎总是一个坏主意。



文章来源: How to count the number of terms in a table with postgresql?