delete from 加上 select 的处理方式

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

create table tmp as select id as col1 from `temp_price` WHERE id = 52 group by id,marketid,date_format(date,'%Y%m%d');

delete from  temp_price  where id = 52 and id  not in (select col1 from tmp);
drop table tmp;

该方法主要建立一个临时表存储select信息。这样就避免了delete  和select的异常错误。

转载于:https://my.oschina.net/u/1384818/blog/498936

你可能感兴趣的:(delete from 加上 select 的处理方式)