select * from import_copy gss where (gss.products_qty,gss.orders_num) 
in (select products_qty,orders_num from import_copy group by products_qty,orders_num having count(*) > 1) 
and Id not in (select min(Id) from import_copy group by products_qty,orders_num having count(*)>1) 
以上sql  ok。一下的错误:
delete from import_copy gss where (gss.products_qty,gss.orders_num) 
in (select products_qty,orders_num from import_copy group by products_qty,orders_num having count(*) > 1) 
and Id not in (select min(Id) from import_copy group by products_qty,orders_num having count(*)>1) 报这个错 ,为什么?
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'g where (g.products_qty,g.orders_num) in (select products_qty,orders_num from ' at line 1MySQL服务器