小编典典

PostgreSQL-与string_agg相反

sql

我正在寻找一个postgresql函数,它将与的相反string_agg

我有一个电影表,其中的tag列包含诸如

Action|Adventure|Drama|Horror|Sci-Fi
Action|Horror|Sci-Fi

我想从此列中获得不同的标签列表,例如

Action
Adventure
Drama
Horror
Sci-Fi

阅读 224

收藏
2021-04-22

共1个答案

小编典典

您可以使用unnest()string_to_array()

 select unnest(string_to_array(t.col, ','))
 from t
2021-04-22