Greetings, stack*overflow*
In my database, I already have one table, 'contacts' that contains records of individual people. I also have several other tables in my database which represent "skill sets" that contain records denoting a particular skill.
1) Am I correct in plotting this as a "many-to-many" relationship? (each contact can have multiple skill sets, and each skill set can belong to multiple contacts)
2) I'm new to databases -- do I want to link the tables?
3) Is there a way to implement this in my program (C# + windows forms) such that for any given record in the 'contacts' table, either the names of all associated 'skill set' tables or all the 'skill' records associated with the 'contact' record could be retrieved?
(Database is located on SQL Server Express 2008. Data is being retrieved from the database via VisualStudio 2008's built in "Data Connection Wizard")