how do i convert a string like this:
"joe,anna,kwame,kofi"
to:
"joe","anna","kwame","kofi" 
I am trying to use this in an sql statement with an IN clause but i keep getting the error as shown below:
Last SQL query failed:
SELECT * FROM view_salesreport WHERE deleted =0 AND saletype IN (dropoff,pickup) 
Can anyone help
 
     
     
     
     
    