Give an example of three entity types and accompanying attributes that might be associated with a database for a car
QUESTION:
Give an example of three entity types and accompanying attributes that might be associated with a database for a car rental agency?
ANSWER:
VEHICLE (VehicleID, LicensePlate#, Make, Model, Year, Mileage, …)
RENTER (License#, Name, Address, City, State, Zipcode, Insurance, etc.)
VEHICLE_RENTAL (VehicleID, License#, Dateout, Datein, Mileageout, Mileagein)
Responses