Welcome Guest, Not a member yet? Register   Sign In
[SOLVED] update query with multiple tables
#28

[eluser]seanloving[/eluser]
[quote author="flaky" date="1263391209"]a fast example
Code:
$this->db->where('column', $data['column_name']);
$this->db->join('table', 'table.column=table1.column1');
$this->db->update('table2', $data);
[/quote]

Hi,
I'm trying to write a query that will update some columns in the 'customers' table, some other columns in the 'contacts' table, and some other columns in the 'organizations' table. The 'customers' table has columns for 'contact_id' and 'organization_id' where I store foreign keys to their respective tables.

Here is a truncated example


Code:
$this->db->set('contacts.firstname', $data['firstname']);
            $this->db->set('organizations.organization_telephone', $data['organization_telephone']);
            $this->db->set('customers.updated_by', $this->session->userdata['user_id']);
            $this->db->join('organizations', 'customers.organization_id = organizations.organization_id');
            $this->db->join('contacts', 'contacts.contact_id = customers.contact_id'); //added
            $this->db->where('customers.customer_id', $data['customer_id']);
            $this->db->update('contacts');
            echo $this->db->last_query();exit;

I echo the generated SQL and I havn't been able to get the JOIN to work, or even to appear :down: .

Does anyone on this thread know what I'm doing wrong?
Thanks


Messages In This Thread
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 01:45 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 02:00 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 02:38 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 02:42 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 02:50 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 03:05 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 03:33 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 03:53 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:04 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:08 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:11 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:14 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:16 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:16 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:21 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:27 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:35 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:48 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 04:51 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 05:01 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 05:03 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 05:08 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 05:13 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 05:22 AM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 12:34 PM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 07:05 PM
[SOLVED] update query with multiple tables - by El Forum - 01-13-2010, 07:38 PM
[SOLVED] update query with multiple tables - by El Forum - 02-07-2010, 05:57 AM
[SOLVED] update query with multiple tables - by El Forum - 02-07-2010, 07:02 PM
[SOLVED] update query with multiple tables - by El Forum - 02-07-2010, 07:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB