PostgreSQL 字段分割分组
原始: 在import_products中的location_prices字段存储内容:
id | location_prices
-----|---------------------
1 | 北京:200.0;河南:100.0
2 | 河南;100.0
1 2 3 4 5 |
|
结果:
id | area_name | price
-----|-----------|-------
1 | 北京 | 200.0
1 | 河南 | 100.0
2 | 河南 | 100.0
知识点:
1. string_to_array
string_to_array函数的作用是将string类型的字符串分割成数组。
1
|
|
2. unnest
unnest 函数的作用是将数组转换成行。
1
|
|
unnest
-------
i
love
you
3. split_part
split_part 函数作用是将字符串按照另一个字符串进行分割,并返回分隔以后的
1
|
|