I want to decrease automatically the value available_seats in the FLIGHT table each time a new row entry is added to the FLIGHT_PLAN table
FLIGHT_PLAN is defined as:
FLIGHT_PLAN (plan_number NUMBER, flight_number NUMBER)
and FLIGHT is defined as
FLIGHT (flight_number NUMBER, available_seats NUMBER)
Should I do this with a stored procedure, a trigger?