L
Lars Brownies
I'm designing a database which tracks people's experience and preference for
working abroad. People apply at least for one or more categories of jobs and
sometimes they also have preferences for certain countries for those
categories. I'm thinking about the following many-table for preferences:
ID_preference
ID_person
ID_category
ID_country
Btw: If they change their preferences I don't need to keep the former
preferences.
For experience and current or future workplace I'm thinking about a table
like:
ID_experience
ID_person
ID_category
ID_country
Date_start
Data_end
Notes (A255)
Since the tables have much similarity I'm doubting if I should combine them
into one table? In that case the date_start, date_end, and notes fields
would remain empty for the preferences.
Can someone advice me if this is a good idea? Or should I keep those tables
separated?
Thanks in advance.
Lars
working abroad. People apply at least for one or more categories of jobs and
sometimes they also have preferences for certain countries for those
categories. I'm thinking about the following many-table for preferences:
ID_preference
ID_person
ID_category
ID_country
Btw: If they change their preferences I don't need to keep the former
preferences.
For experience and current or future workplace I'm thinking about a table
like:
ID_experience
ID_person
ID_category
ID_country
Date_start
Data_end
Notes (A255)
Since the tables have much similarity I'm doubting if I should combine them
into one table? In that case the date_start, date_end, and notes fields
would remain empty for the preferences.
Can someone advice me if this is a good idea? Or should I keep those tables
separated?
Thanks in advance.
Lars