Just need some ideas.. how would I design the SQL database tables for a car rental database?
SQL database tables for rental database
Started by Roger, Aug 22 2010 12:54 PM
4 replies to this topic
#1
Posted 22 August 2010 - 12:54 PM
Check out our update Guidelines/FAQ. When posting code, remember to use code tags -
.
.
|
|
|
#2
Posted 22 August 2010 - 04:57 PM
Depends on how you plan to design the car rental application.
#3
Posted 22 August 2010 - 06:26 PM
You need to understand the relational database design process, a good guideline is as follows:
Now of course to do this you will need to understand what needs it should satisfy for your job, walking a simple list can be fairly straightforward and help aid in the design of and prior relationship planning before any solid draft is finished. You need:
* To keep track of our inventory of cars.
* To need an order entry system.
* To make monthly reports on sales.
* To provide our product catalog for printing or the web.
What else can you think of?
- Identify the purpose of the database needed.
- Review existing database(s).
- Make a preliminary list of fields.
- Make a preliminary list of tables and enter the fields. \
- Identify the key fields.
- Draft the table relationships.
- Enter sample data and normalize the data.
- Review and finalize the design.
Now of course to do this you will need to understand what needs it should satisfy for your job, walking a simple list can be fairly straightforward and help aid in the design of and prior relationship planning before any solid draft is finished. You need:
* To keep track of our inventory of cars.
* To need an order entry system.
* To make monthly reports on sales.
* To provide our product catalog for printing or the web.
What else can you think of?
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#4
Posted 22 August 2010 - 07:43 PM
@WP: The question is theoretical.. I'm just asking it here to get an idea how you guys would approach it...
@NW: I would've just started on 3, but 1 and 2 are both pretty important... off the top of my head, I am thinking we minimally need the following tables (and it's associate fields):
rental location
car information
renter information
agent information
contract information
billing information
What else do we need?
@NW: I would've just started on 3, but 1 and 2 are both pretty important... off the top of my head, I am thinking we minimally need the following tables (and it's associate fields):
rental location
car information
renter information
agent information
contract information
billing information
What else do we need?
Check out our update Guidelines/FAQ. When posting code, remember to use code tags -
.
.
#5
Posted 23 August 2010 - 04:07 PM
I start by looking at the basic data I need, then dive into details, much like what you're doing here.


Sign In
Create Account

Back to top









