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?

link|improve this question

40% accept rate
Why are you using HAVING without a GROUP BY? MySQL allows it but you're asking for trouble by doing it. – mu is too short Sep 4 '11 at 23:33
Yes I notice That and I remove the HAVING thanks. the query is (delete from orders where FROM_UNIXTIME(placedate) < '2011-08-01 00:00:00') – Mohammed Shannaq Sep 5 '11 at 0:52
feedback

2 Answers

Delete * From orders 
  Where id in (select 
    id
  from 
    orders  HAVING FROM_UNIXTIME(`placedate`)  < '2011-08-01 00:00:00')

Delete where the ID is in the result set that you just queried.

link|improve this answer
if I do delete from orders where id in (select id from orders where FROM_UNIXTIME(placedate) < '2011-08-01 00:00:00') I Got #1093 - You can't specify target table 'orders' for update in FROM clause – Mohammed Shannaq Sep 4 '11 at 23:04
you gave me the idea msarchet , the query is (delete from orders where FROM_UNIXTIME(placedate) < '2011-08-01 00:00:00') – Mohammed Shannaq Sep 4 '11 at 23:17
feedback
up vote 0 down vote accepted

after msarchet gave me an idea the sql query was

delete from orders where FROM_UNIXTIME(placedate) < '2011-08-01 00:00:00'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.