On clients machine, currently to delete on trainee record it runs 10 queries to delete records from 10 tables. At the time of running all queries, server shows (104) Connection reset by peer. An error condition occurred while reading data from the network.
I think it because of running 10 queries at a same time. Is there any possibility that through one line of query we can delete record from 10 tables.
I've tried following query
DELETE FROM table1, table2, table3, table4, table5, table6, table7, table8, table9, table10 WHERE empID = 11;
But it gives ' error in query.
Any tip