I have an array come back from a query but I want to change it to a string for another db query
$test = $go->get_stuff();
$test = array(
'ONE',
'TWO',
'THREE',
'FOUR'
)
// expected outcome
$sql .= "(table.col IN ('ONE', 'TWO', 'THREE', 'FOUR') OR table.col IS NULL)";