Thnaks John - Sorry I musn't have been clear in my request. I'm displaying
multiple values from one table in my database but I need to store these
multiple values (once selected by the user) in another (related) database
table. Is this possible? If so how?
Thnaks John - Sorry I musn't have been clear in my request. I'm displaying
multiple values from one table in my database but I need to store these
multiple values (once selected by the user) in another (related) database
table. Is this possible? If so how?
Storing data redundantly is almost NEVER either necessary or prudent.
It wastes space; more importantly, it means that you have all that
many more places to track down and edit if any of the data ever
changes.
You're using a relational database. Use it relationally! Store the
data ONCE, and only once; then use Queries joining the tables to view
the data in related tables whenever needed.
If you have some GOOD reason to copy the data into a second table
please explain. It can be done - it's just that it generally should
NOT be done.
John W. Vinson[MVP]
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.