I have two columns in the table
hours at sea - Would be good to be able to store hours and mins so you could say at sea for 1hr and 20mins and to be able to add up all the hours and minutes easily.
team - this stores IDs from the team table, so you may have ids 1,3,10,23,45,34. Number in team changes often.
So which types would you use for these columns? I cant decide between int, decimal, varchar but want the hours at sea to be able to work out its hours (so 60 mins in an hour), with the team column, just storing a list of ids form another table, but not sure if int can handle commas , or if there is a better way to do it!