Irene is working on a database that stores customer data and order information. The Customer Information Table holds customer information. A unique customer number serves as the primary key for this table. The Order Information Table holds order information. A unique order number serves as the primary key for this table. A customer only has one customer number but may have several order numbers
If Irene wants to establish a one-to-many relationship between the customer information table and the order information table, which of the following steps should she follow?
A) Irene should include the foreign key in the customer information table as a primary key in the order information table.
B) Irene should include the primary key in the customer information table as a foreign key in the order information table.
C) Irene cannot establish a relationship between the two tables.
D) Irene should include the primary key in the customer information table as a primary key in the order information table.
B
You might also like to view...
For a non-empty linked list, select the code that should appear in a function that adds a node to the end of the list. newPtr is a pointer to the new node to be added and lastPtr is a pointer to the current last node. Each node contains a pointer nextPtr.
a. lastPtr->nextPtr = newPtr; lastPtr = newPtr b. lastPtr = newPtr; lastPtr->nextPtr = newPtr c. newPtr->nextPtr = lastPtr; lastPtr = newPtr d. lastPtr = newPtr; newPtr->nextPtr = lastPtr
________ are displayed as dotted horizontal and vertical lines and indicate the pointer's position
A) Headers B) Rotation handles C) Ruler guides D) Sizing handles
A chart must be located in a specific cell or at a specific address range.
Answer the following statement true (T) or false (F)
A deadlock is a phenomenon that prevents the processing of transactions.
Answer the following statement true (T) or false (F)