I have data like this "1,2,3,4"
(String). I need to convert this to ('1','2','3','4')
, so that i can use like select * from table where ids in ('1','2','3','4')
.
Is there any in built function in vertica to convert string to comma separated array..? Thanks in advance.