在SQL Server 2008 中建立複合主鍵
複合主鍵是兩個或多個欄位的唯一組合,用於識別每一行一張桌子。這確保表中的每一行都是不同的。在 SQL Server 2008 中建立複合主鍵是一個簡單的過程。
要建立複合主鍵,請按照下列步驟操作:
column_a integer not null, column_b integer not null,
primary key (column_a, column_b)
這將會建立一個由column_a 和column_b 欄位組成的主鍵。這些列中的每個值組合對於表中的每一行都必須是唯一的。
範例:
讓我們建立一個名為my_table 的表,其複合主鍵由以下組成:column_a 和column_b 欄位:
create table my_table ( column_a integer not null, column_b integer not null, column_c varchar(50), primary key (column_a, column_b) );現在,my_table表中的每一行都是唯一的由column_a和column_b的組合來識別。
以上是如何在SQL Server 2008中建立複合主鍵?的詳細內容。更多資訊請關注PHP中文網其他相關文章!