Hi I have a rather complicated query that I've been using for a long time in SQLite. It starts like this:
delete FROM 
   verbal_sets 
WHERE verbal_sets.verbal_set_id IN( 
   SELECT 
       F.verbal_set_id 
   FROM verbal_sets AS F WHERE Exists( 
       SELECT 
         knowledge_id, phrase_id,first_entity_text, second_entity_text,verbal_relation_text, Count(verbal_set_id) 
       FROM
        (...)
I'm now creating a MySQL supported version of the same software but MySQl doesn't like this query. It returns the error:
[Err] 1093 - You can't specify target table 'verbal_sets' for update in FROM clause
I have no experience with MySQL specifics. Can anyone point me what must be done with this query?
 
     
     
    