I am understanding that football is a type of exercise, so create a table "Football" and another "Exercise", each with its primary keys (id’s). In the Football table you must have a column (foreign key or FK) that will receive the primary key of the table Execisio. For example:
Exercise (id, description, ...)
Football (id, id_exercise, duration, ...)
You may need to enable constraints on database startup to ensure that they work (it is not standard for Sqlite they are already active). For example, to make a DELETE CASCADE from a record of the Exercise table (when deleting an Exercise record, delete all Football records whose id on the foreign key is the same as the one deleted in Exercise) the constraints have to be enabled
When you need to rescue correlated data from both tables, do an Inner Join (Futebol.id_exercicio = Exercicio.id) between them or create a View with this Inner Join ready to facilitate the use of Content Providers (if you are the case).
If you need more details, speak.
I think that that question can help you
– Hamurabi Araujo