create table push_reader as
select DISTINCT a.*,b.drop_dt from `sony_push detail` a
inner join sony_push b on a.camp_id = b.camp_id
where a.read_date>=b.drop_dt
and a.read_date<=date(b.drop_dt)+1;
create table push_reader as
select DISTINCT a.*,b.drop_dt from `sony_push detail` a
inner join sony_push b on a.camp_id = b.camp_id
where a.read_date>=b.drop_dt
and a.read_date<=date(b.drop_dt)+1;