Welcome Guest, Not a member yet? Register   Sign In
Need Help With Exploding CSV Data Within DB
#15

[eluser]Jay Logan[/eluser]
Figured it out. Here is the final code I will be using.

Code:
function unique_counties($id_name)
        {
            $this->db->select();
            $this->db->where('id_name', $id_name);
            $get_data = $this->db->get('VSS_src_network');
            $this->db->where_in('zip_code', explode(', ', $get_data->row()->addr_assoc));
            $this->db->distinct();
            $this->db->select('county_name');
            $result = $this->db->get('JL_zip_codes as County');
            return $this->clean_result($result);
        }

I have to make a new function for each item I want to be unique (city, state, etc.) but it works well. Let me know there is any better way of doing this. Thanks again.


Messages In This Thread
Need Help With Exploding CSV Data Within DB - by El Forum - 02-12-2009, 03:54 PM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-12-2009, 05:16 PM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-12-2009, 05:22 PM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 07:23 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 07:30 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 07:38 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 08:02 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 08:08 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 08:11 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 08:15 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 08:25 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 08:32 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 09:12 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 09:29 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 10:40 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 10:46 AM
Need Help With Exploding CSV Data Within DB - by El Forum - 02-13-2009, 11:12 AM



Theme © iAndrew 2016 - Forum software by © MyBB