I have a table in postgres having column web with jsonb type. It contains values like below. I want to remove from the array. Can you please help.
Jsonb column only has values like below 2 rows
["test.com","test.com","abc.com"]
["google.com","fb.com","google.com"]
Required output
["test.com","abc.com"]
["google.com","fb.com"]