delete rows in multiple table

A

Anonymous

Guest
Hi,

We study your query and we found you have logically develop wrong query.

you just need to add proper join for your query.

We have developed the same using and query.

Have look at this:

Code:
delete tbl_admin, tbl_moved_admin from tbl_admin, tbl_moved_admin where tbl_admin.admin_id = 

tbl_moved_admin.admin_id and (tbl_admin.admin_id = 2 or tbl_moved_admin.admin_id = 2)


http://www.thevariyasoft.com
 
Back
Top