I have a table with several columns and one of the column data type is SET. When retrieving, I want to retrieve the vales in SET as an array.
$getfirstlevel=mysqli_query($db,"SELECT * FROM aaa_menu WHERE type='page' and id = '$item' and level = 'first' and status = 'Active' ORDER BY menu_order ASC");
  while($flrow=mysqli_fetch_assoc($getfirstlevel)){
        $account_select_status_fl=$flrow['account_select_status'];
        $account_type_status_fl=$flrow['account_type']; <=== this column is datatype SET with multiple values. Hence I would like to have it returned as an array.
}
 
     
    