Structure

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

Need an advice on structure of DB: I have 4 sets of data with relatively
similar fields (but some fields of cause dont apply to other sets). I am
thinking: shall i store them in the same table and make 4 querries or make 4
different tables?

What is the best way?

Thank you.
Lana
 
Need an advice on structure of DB: I have
4 sets of data with relatively similar fields
(but some fields of cause dont apply to
other sets). I am thinking: shall i store them
in the same table and make 4 querries or make 4
different tables?

To give you any useful advice, I suspect we'd need quite a bit more detail.
"Relatively similar fields" isn't very specific. If you could be more
specific about the subject(s) of the data, and the content, it's likely
someone might be able to make some worthwhile suggestions.

Larry Linson
Microsoft Access MVP
 
If the fields are similar, chances are that they are instances of the same
kind of entity, so it would be best to put them in the one table with an
extra field to distinguish the entity type. The queries (based on the entity
type) would then separate them as you suggest.

There might be cases where that would not be the best solution, but as a
generic answer to a generic question, that's my suggestion.

As an example, the Northwind database, and you will see they have separate
tables for customers, shippers, and employees. There would be some cases
where you could consider using just one table for these entities.
 

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.

Ask a Question

Similar Threads

Table structure 3
Table structure 2
Synchronisation problems 5
copy table structure 10
Parsing a table 1
Nested query problem 6
Making fields same between tables 1
Export Access table structure in a Word table 8

Back
Top