select id, starting_price, starting_distance, skip_price, skip_distance from taxi_prices
insert into taxi_prices
starting_price,starting_distance,skip_price,skip_distance,#{startingPrice},#{startingDistance},#{skipPrice},#{skipDistance},
update taxi_prices
starting_price = #{startingPrice},starting_distance = #{startingDistance},skip_price = #{skipPrice},skip_distance = #{skipDistance},
where id = #{id}
delete from taxi_prices where id = #{id}
delete from taxi_prices where id in
#{id}