select id, reporter_name, reporter_phone_number, accident_type, location_type, traffic_jam, weather_condition, impact_level, is_reverse_cargo, is_maintenance, police_contact, towing_service_contact, congestion_ahead, at_intersection, on_curve, spillage_item, vehicle_owner_phone, small_car, trucks, buses, tankers, minor_injuries, serious_injuries, fatalities, is_private, facility_id,location,ramp_id from dc_event_accident
insert into dc_event_accident
id,
reporter_name,
reporter_phone_number,
accident_type,
location_type,
traffic_jam,
weather_condition,
impact_level,
is_reverse_cargo,
is_maintenance,
police_contact,
towing_service_contact,
congestion_ahead,
at_intersection,
on_curve,
spillage_item,
vehicle_owner_phone,
small_car,
trucks,
buses,
tankers,
minor_injuries,
serious_injuries,
fatalities,
is_private,
facility_id,
ramp_id,
location,
#{id},
#{reporterName},
#{reporterPhoneNumber},
#{accidentType},
#{locationType},
#{trafficJam},
#{weatherCondition},
#{impactLevel},
#{isReverseCargo},
#{isMaintenance},
#{policeContact},
#{towingServiceContact},
#{congestionAhead},
#{atIntersection},
#{onCurve},
#{spillageItem},
#{vehicleOwnerPhone},
#{smallCar},
#{trucks},
#{buses},
#{tankers},
#{minorInjuries},
#{seriousInjuries},
#{fatalities},
#{isPrivate},
#{facilityId},
#{location},
#{rampId},
update dc_event_accident
reporter_name = #{reporterName},
reporter_phone_number = #{reporterPhoneNumber},
accident_type = #{accidentType},
location_type = #{locationType},
traffic_jam = #{trafficJam},
weather_condition = #{weatherCondition},
impact_level = #{impactLevel},
is_reverse_cargo = #{isReverseCargo},
is_maintenance = #{isMaintenance},
police_contact = #{policeContact},
towing_service_contact = #{towingServiceContact},
congestion_ahead = #{congestionAhead},
at_intersection = #{atIntersection},
on_curve = #{onCurve},
spillage_item = #{spillageItem},
vehicle_owner_phone = #{vehicleOwnerPhone},
small_car = #{smallCar},
trucks = #{trucks},
buses = #{buses},
tankers = #{tankers},
minor_injuries = #{minorInjuries},
serious_injuries = #{seriousInjuries},
fatalities = #{fatalities},
is_private = #{isPrivate},
facility_id = #{facilityId},
ramp_id = #{rampId},
location = #{location},
where id = #{id}
delete from dc_event_accident where id = #{id}
delete from dc_event_accident where id in
#{id}