insert into store_ads(
ad_name,ad_type,share_id,start_time,page_url,state,end_time,advert_type,ads_id,seq,url
) values (
#{adName},#{adType},#{shareId},#{startTime},#{pageUrl},#{state},#{endTime},#{advertType},#{adsId},#{seq},#{url}
)
update store_ads t set t.status_cd = #{statusCd}
,t.b_id = #{newBId}
, t.ad_name= #{adName}
, t.ad_type= #{adType}
, t.share_id= #{shareId}
, t.start_time= #{startTime}
, t.page_url= #{pageUrl}
, t.state= #{state}
, t.end_time= #{endTime}
, t.advert_type= #{advertType}
, t.seq= #{seq}
, t.url= #{url}
where 1=1
and t.ads_id= #{adsId}