RaffiqEddy
Programmer
Hi,
I want to delete all data from Table1 based on data from Table2.
So do as following:
Using MySQL 4.0 on my PC it works perfectly.
BUT the problem with my Server which using MySQL 3.32, it returns with an error.
Can someone help me to DOWNGRADE the query above from MySQL 4.0 --> 3.32
TIA
Regards.
I want to delete all data from Table1 based on data from Table2.
So do as following:
Code:
DELETE Table1
FROM Table1
INNER JOIN Table2 ON
Table1.StatusId = Table2.StatusId AND
Table1.ApproveById = Table2.ApproveById AND
Table1.EmpNo = Table2.EmpNo
BUT the problem with my Server which using MySQL 3.32, it returns with an error.
Can someone help me to DOWNGRADE the query above from MySQL 4.0 --> 3.32
TIA
Regards.