Respuesta :
Answer:
(a) Supplier
Explanation:
In database design, two tables are linked together using a FOREIGN KEY. A foreign key is formed from one or more columns of one table that reference or match another key (often called a primary key) in another table. In other words, when a column or a combination of columns on one table points to a primary key of another table, the column(s) will specify the foreign key.
PS: A primary key is used to make each entry of a table unique.
In the given tables - Supplier, Product, Country - since the Supplier table has a column called CountryId referencing the CountryId column of the Country table, then CountryId is a primary key in Country table but a foreign key in Supplier table.
Therefore, the CREATE TABLE statement(s) of the Supplier table must specify a foreign key.
A database management system often reads and writes data in a database, and makes sure there is consistency and availability. The supplier table's CREATE TABLE statement(s) must specify a FOREIGN KEY.
- The database system often guards data when a lot of transactions is taking place. it often hinders multiple transactions with the same data at the same time.
The Select SQL statement does not alter any database data. A supplier database is made up of different list of service, product or materials providers who can meet orders quickly.
Learn more from
https://brainly.com/question/15281828