Lets say i have 3 columns in my Table. (Postgres Database)
Name, FirstName, Communication
My Communication column is a string with this text.
[{"typ":1,"kontext":1,"adresse":"031 *** ** **"},
{"typ":2,"kontext":2,"adresse":"031 *** ** **"},
{"typ":1,"kontext":2,"adresse":"+4179*******"}]
Now i want to make a query with Name,Firstname and Mobilenumber
How can i catch the number inside the string where the typ = 1 and kontext = 2 and make it a new column?