Welcome Guest, Not a member yet? Register   Sign In
[SOLVED] Deleting data from two tables simultaneously
#9

[eluser]Unknown[/eluser]
I used the above code but get database error

Code:
A Database Error Occurred

Error Number: 1109

Unknown table 't2' in MULTI DELETE

DELETE t1, t2 FROM tech_static_pages t1 tech_navigation t2 ON t1.id = t2.page_id WHERE t1.id = '22'

Filename: E:\wamp\www\techinfi\system\database\DB_driver.php

Line Number: 330


But I resolved it by using JOIN keyword as

Code:
function delete_page($page_id)
{
  return $this->db->query("
    DELETE t1, t2
    FROM tech_static_pages t1 JOIN tech_navigation t2
    ON t1.id = t2.page_id
    WHERE t1.id = '".$page_id."'");
}

My code is working fine using JOIN keyword.

Thanks,
Tikendra Maitry
Tiks.in


Messages In This Thread
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 01-21-2011, 12:14 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 01-21-2011, 08:05 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 01-22-2011, 06:29 PM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 01-24-2011, 08:14 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 01-24-2011, 08:12 PM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 01-25-2011, 07:04 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 01-25-2011, 10:08 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 02-17-2011, 06:13 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 03-14-2012, 02:59 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 03-14-2012, 03:37 AM
[SOLVED] Deleting data from two tables simultaneously - by El Forum - 06-05-2013, 07:11 PM



Theme © iAndrew 2016 - Forum software by © MyBB