I have this mysql query
select
id,
FROM_UNIXTIME(`placedate`) as placedate_mysqldate
from
orders HAVING placedate_mysqldate < '2011-08-01 00:00:00'
so the query returns about 1000 record and i want to delete it in the same query statment.
because the placedate_mysqldate is userdefined and not exists in the database i cannot use the normal delete statment like
delete * from orders where placedate_mysql < '2011-08-01 00:00:00'
so any idea how to do that?