I have a lot of information that I need to save to the database. Some of this information is very similar:
Example: time1, time2, time3, ... hour10.
My question is whether to store everything in the same table or create a table for the information and a specific one to store the hours by putting a foreign key of the first table in the times table.
Next create a view with everything.
What will be best?