Welcome Guest, Not a member yet? Register   Sign In
DB Update with multiple inputs in a loop
#17

[eluser]oneos[/eluser]
This is the query I was attempting to build, which we could just run as such:

This will do what you want, assuming the `id` fields in the two tables are related.

Code:
$sql = 'UPDATE `ft_categories` `cat`, `ft_upload_data` `dat`'
    . 'SET `dat`.`category` = `cat`.`category_name`'
    . 'WHERE `dat`.`id` = `cat`.`id`;';

$query = $this->db->query($sql);

After you've reloaded your categories table, it'll update your data table, setting the category names to eachother where the id's match.


Messages In This Thread
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 04:21 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 05:16 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 05:56 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 05:57 AM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 02:24 PM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 02:25 PM
DB Update with multiple inputs in a loop - by El Forum - 05-23-2011, 04:10 PM
DB Update with multiple inputs in a loop - by El Forum - 05-24-2011, 04:42 AM
DB Update with multiple inputs in a loop - by El Forum - 05-24-2011, 02:30 PM
DB Update with multiple inputs in a loop - by El Forum - 05-24-2011, 08:11 PM
DB Update with multiple inputs in a loop - by El Forum - 05-25-2011, 01:10 AM
DB Update with multiple inputs in a loop - by El Forum - 05-25-2011, 11:28 AM
DB Update with multiple inputs in a loop - by El Forum - 05-26-2011, 02:26 AM
DB Update with multiple inputs in a loop - by El Forum - 05-26-2011, 02:45 AM
DB Update with multiple inputs in a loop - by El Forum - 05-26-2011, 08:53 AM
DB Update with multiple inputs in a loop - by El Forum - 05-27-2011, 02:20 AM
DB Update with multiple inputs in a loop - by El Forum - 05-27-2011, 06:52 AM
DB Update with multiple inputs in a loop - by El Forum - 05-27-2011, 11:52 PM
DB Update with multiple inputs in a loop - by El Forum - 05-31-2011, 01:43 AM



Theme © iAndrew 2016 - Forum software by © MyBB