memrootじしょ
英和翻訳
Composite Key
Composite Key
/kəmˈpɑːzɪt kiː/
コンポジットキー
1.
データベースにおいて、レコードを一意に識別するために複数の列(属性)を組み合わせたキー。
データベースにおいて、単一の属性だけではレコードを一意に識別できない場合に、複数の属性(列)を組み合わせてレコードを一意に識別するためのキーです。これにより、データの一貫性と整合性が保たれます。
In
a
relational
database,
a
composite
key
is
formed
by
combining
two
or
more
columns.
(リレーショナルデータベースでは、複合キーは2つ以上の列を組み合わせることで形成されます。)
In a relational database
リレーショナルデータベースにおいて
a composite key
複合キー
is formed
形成される、作られる
by combining
組み合わせることによって
two or more columns
2つ以上の列
The
combination
of
customer
ID
and
product
ID
can
serve
as
a
composite
key
for
an
order
table.
(顧客IDと製品IDの組み合わせは、注文テーブルの複合キーとして機能します。)
The combination of
~の組み合わせ
customer ID
顧客を識別する番号
and product ID
そして製品を識別する番号
can serve as
~として機能することができる
a composite key
複合キー
for an order table
注文に関する情報を保持する表のために
Choosing
an
effective
composite
key
is
crucial
for
database
performance.
(効果的な複合キーを選択することは、データベースのパフォーマンスにとって非常に重要です。)
Choosing
選択すること
an effective
効果的な
composite key
複合キー
is crucial
非常に重要である
for database performance
データベースがどれだけ効率的に動作するかという点に関して
関連
Primary Key
Foreign Key
Candidate Key
Unique Key
Database Schema