Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

WITHOUT USING CHATGPT - - - NEED HELP GETTING THE DISCOUNT TO WORK RIGHT - - - - Scenario and Database Model: InstantRide InstantRide is

WITHOUT USING CHATGPT---NEED HELP GETTING THE DISCOUNT TO WORK RIGHT----Scenario and Database Model: InstantRide
InstantRide is the new ride sharing application in the city and it has just started its operations. With the help of the InstantRide mobile application, the users request a ride with their location. Drivers and cars are assigned to the request; and then the driver picks up the user to ride their requested location. Information for the users, drivers and cars are stored in the database as well as the travel transactions.
In the USERS table, information for the users are stored with their first name, last name and email:
USERS Table
USERS Table
In the DRIVERS table, all the drivers in the InstantRide are stored with their name, driving license number and check and rating information:
DRIVERS Table
DRIVERS Table
In the CARS table, all the cars in the InstantRide system are kept with the license plate, model and year:
CARS Table
CARS Table
Finally, the transactions of the rides are stored in the TRAVELS table. For each travel, start and end time with location are stored. In addition, the involved driver, car and user are listed for each drive. Price and discount information are also available in the database:
TRAVELS Table
TRAVELS Table
You are assigned as the database administrator to collect and manage transactional data of the InstantRide operations. Your main task is to create SQL scripts to help other teams to retrieve the requested data. In the following activities, you will create the scripts, run against the database and send the result to the corresponding teams.
Task 1:
The Finance team wants to calculate a VAT (8%) on the amount of the stay reservations in the database. However, the team wants to calculate the VAT after the discounts are applied on the prices. In addition, it is important to remember if there is no discount/offers, then the value is NULL in the TRAVELS table. Create a procedure called VATCalculator to calculate the VAT amount and return with the corresponding travel ID. In addition, execute the procedure to account for NULL values and send the respective result to the team. The VAT value should be rounded to 2 decimals.
Remember to redefine the MYSQL delimiter (;) when creating the procedure. This will prevent the commands from executing separately.
Task 1: Create a procedure to calculate the VAT.
Test Feedback:
Status: FAILED!
Check: 1
Test: Create a procedure to calculate the VAT
Reason: Expected:
+-----------+------+
| TRAVEL_ID | VAT |
+-----------+------+
|5001|1.24|
|5002|1.64|
|5003|0.99|
|5004|2.12|
|5005|0.89|
|5006|1.05|
|5007|0.30|
|5008|1.51|
|5009|1.08|
|5010|1.64|
+-----------+------+
Found:
+-----------+------+
| TRAVEL_ID | VAT |
+-----------+------+
|5001|1.24|
|5002|1.64|
|5003|0.99|
|5004|2.44|
|5005|0.89|
|5006|1.17|
|5007|0.35|
|5008|2.00|
|5009|1.08|
|5010|2.05|
+-----------+------+
Error : AssertionError -
Timestamp: 2024-07-1621:09:28.726065

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Database Foundations Technology Fundamentals For IT Success

Authors: Bob Bryla

1st Edition

0782143725, 9780782143720

More Books

Students also viewed these Databases questions

Question

Define the goals of persuasive speaking

Answered: 1 week ago