select oil_price_id, oil_name, oil_price, station_id, station_nanme, date from station_oil_price
insert into station_oil_price
oil_name,oil_price,station_id,station_nanme,date,#{oilName},#{oilPrice},#{stationId},#{stationNanme},#{date},
update station_oil_price
oil_name = #{oilName},oil_price = #{oilPrice},station_id = #{stationId},station_nanme = #{stationNanme},date = #{date},
where oil_price_id = #{oilPriceId}
delete from station_oil_price where oil_price_id = #{oilPriceId}
delete from station_oil_price where oil_price_id in
#{oilPriceId}