Hi,
I cant get this query to work with MySQL.
delete from
companies as com,
employees as emp,
informations as inf
where
emp.companyId=com.id
and
inf.companyId=com.id
and
com.enabled=0;
I ve this tables...
Company
------------
Id Name Enabled
1 acme 0
2 mysql 1
Employees
-------------
Id Name...