Hi,
For example's sake, lets suppose I have an applications where each entry is a project.
Each and every project has an id, title and text.
Some of the projects (but very few) also have "some more info": id, id_project, date and place.
Should I have the two tables described above (projects and more_info) or should I have one table only? I thought that one table only would be a bad Idea because it would end up with a lot of empty fields as date and place are rarely populated.
Having these two tables, I can use a LEFT JOIN in MySQL to get all the results as if it would be one table only.
I look at it as a one to few relationship. Does this relationship exist?
What are your thoughts on this?