This is a query which takes 1 to 2 secs to execute (mysql query)
DELETE t1 FROM table1 t1, table2 t2, table3 t3, table4 t4 WHERE (t1.column1 = t2.column1 OR t1.colum2 = t2.column1) AND t2.column1 = t3.column1 AND t3.column2 = t4.column1 AND t4.column2=100;
I am looking the execution time in few millisecs.
Is there any optimum way of implementing this?
Thanks.