delete from tx_table
where buyer_id in(select t.buyer_id
from tx_table t
left join user_table u
on t.buyer_id=u.user_id
where u.user_id is null)
I am getting error for above query.The error is
sql error 1093:You can't specify target table 'tx_table' for update in FROM clause
Please help me