The database that I need to create holds data of a vehicle tracking system. So several vehicles keep sending data(about 20 parameters) to my site that stores these values in the database.
The parameters of a vehicle include the vehicle number and the hardware id as constant, the rest keep changing. So from one vehicle these two parameters are always constant.
I will have another table in this database containing the login credentials of the users and I would like to create a link between the two tables with the vehicle number(primary key) in the login table and with the vehicle number in table containing parameters.
Since the vehicle number column is redundant I cannot have it as the primary key. So things I would like to know:
- What way can I achieve the link between tables
- Is there a good way so that I dont store this vehicle number and hardware id so many times.
- Should I be storing each vehicle's data in separate table rather than all in one table?
P.S: This is the first time I am designing a database since I have only been a programmer all the time, so expecting good suggestions.