I have table like this below,
ID value
1 test
2 test
3 trouble
4 trouble
5 test
6 ok
5 trouble
This value column has three genres test
trouble
ok
Now I want to get the unique array such as ['test','trouble','ok']
(any order is fine)
How can I do this?