How can I optimize this query SQL?
CREATE TABLE table1 AS
 SELECT * FROM temp
 WHERE Birth_Place IN
   (SELECT c.DES_COM
      FROM tableCom AS c
      WHERE c.COD_PROV IS NULL)
 ORDER BY Cod, Birth_Date
I think that the problem is the IN clause
 
     
    