IN YOUR DATABASE SYSTEM, YOU MUST FREQUENTLY CONVERT FROM EURO CUR...

19. In your database system, you must frequently convert from EURO currency to USD currency, using the exchange rate stored in the ExchangeRates table. What is the best way to achieve this?A. Create a function that accepts an @EURAmount parameter and returns the USD value.B. Create a stored procedure that accepts an @EURAmount parameter and selects the USD value using the SELECT statement.C. Create a view that accepts an @EURAmount parameter and selects the USD value.D. Create a stored procedure that accepts an @EURAmount parameter and returns the USD value using the SELECT statement.