Explain how linkages between relational tables are accomplished.

What will be an ideal response?


Tables that are logically related in the data model need to be physically linked. The degree of association between the tables (i.e., 1:1, 1:M, or M:M) determines how the linking occurs. The key-assignment rules for linking tables are discussed below. Where a true 1:1 association exists between tables, either (or both) primary keys may be embedded as foreign keys in the related table.

Where a 1:M (or 1:0,M) association exists, the primary key of the 1 side is embedded in the table of the M side.

To represent the M:M association between tables, a link table needs to be created that has a combined (composite) key consisting of the primary keys of two related tables.

PTS: 1

Computer Science & Information Technology

You might also like to view...

Which of the following does not complete the sentence correctly?

An interface . a) forces classes that implement it to declare all the interface methods. b) is used in place of an MustInherit class when there is no default implementation to inherit. c) cannot be instantiated. d) can be instantiated.

Computer Science & Information Technology

If a sender wants to have copies of each data block being sent to three recipients, which paradigm should the sender choose?

What will be an ideal response?

Computer Science & Information Technology

A bar chart:

A) separates one or more pie slices from the rest of the pie chart. B) shows each data point in proportion to the whole data series as a slice in a circular pie. C) uses a line to connect data points in order to show trends over a period of time. D) compares values across categories using horizontal bars.

Computer Science & Information Technology

Explain how RPC works.

What will be an ideal response?

Computer Science & Information Technology