I have a database. I've made the tables as normalized as possible. I had a many-to-many issue where I wanted many questions to be applied for every customer. I have another table for selected answers - yes, no, maybe. I then created a Cartusian table where for every question, a customer was listed for each. I then appended this query into a table so that I could add another column for selected answers. Now whenever I answer each question, the answer is housed in that new table. However, now whenever I receive a new customer, I don't know how to go about inserting the new customer's information into the table that solved my many-to-many issue (indicated above). I read in several places to do an "INSERT INTO" query, but I don't know how to go about where to create it, how to write it, and how it automatically inserts the data into the table.
|