Several parts to this question ... given one table with up to 10 related records ... task create a query to join all related records in one record with 10 fields (may be 0 to 10 related records for any given primary key
a)what is the maximum number of joins one would want to ever make on the same table?
b)would it be more appropriate to store this type of data model in a flat table ie waste disk space and create each record with space to store 10 doubles per record?
c)I have sort been able to generate a query that gets 2 related records but cannot get the syntax correct for nesting larger then one join?
d)some literature sugest that there are several ways to enter nested joins ... Select from join (select ... select from where select
a)what is the maximum number of joins one would want to ever make on the same table?
b)would it be more appropriate to store this type of data model in a flat table ie waste disk space and create each record with space to store 10 doubles per record?
c)I have sort been able to generate a query that gets 2 related records but cannot get the syntax correct for nesting larger then one join?
d)some literature sugest that there are several ways to enter nested joins ... Select from join (select ... select from where select