需要帮助将Postgres
中的列数据(字符串)拆分为多个虚拟列,例如:
---------column-------
data1;data2;data3 -
data1;data3 -
data1 -
进入之内
- Col1 ---- Col2 ---- Col3
1 | 1 | 1
1 | 0 | 1
1 | 0 | 0
我知道最大的列数,所以我可以预设哑列。我需要做某种for循环吗?
日元
最佳答案
您可以使用split_part():
select split_part(col, ';', 1) as col1,
split_part(col, ';', 2) as col2,
split_part(col, ';', 3) as col1
from the_table;
或者更有效,因为每行只执行一次拆分:
select c[1] as col1,
c[2] as col2,
c[3] as col3
from (
select string_to_array(col, ';') as c
from the_table
) t;