Create the endangered species table by running the following statement in Application Express
1. How many transactions are shown in the following code? Explain your reasoning. BEGIN INSERT INTO my_savings (account_id, amount) VALUES (10377, 200); INSERT INTO my_checking (account_id, amount) VALUES (10378, 100); END; 2 2. Create the endangered species table by running the following statement in Application Express: CREATE TABLE endangered_species (species_id NUMBER(4) CONSTRAINT es_spec_pk PRIMARY KEY, … Read more