Refer to the stored procedure. What is the correct call synt…
Refer to the stored procedure. What is the correct call syntax to get the number of flight operated by americanAirlines through a stored procedure call from the command line? CREATE PROCEDURE FlightCount(IN airline varchar(30), OUT quantity INT) SELECT COUNT(*) INTO quantity FROM Flight WHERE AirlineName = airline;