單項選擇題數據庫中的中的PROFITS表中PRODUCT_NAME與SALE_PERIOD列建立主鍵。下列哪個語句無法定義這個主鍵?()

A.create table profits(product_name varchar2(10),sale_perion varchar2(10),profit number, constraint pk_profits_01 primary key(product_name,sale_period))
B.alter table profits add constraint pk_profits_01 primary key(product_name,sale_period)deferrabl
C.以上兩者都是


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題你要關閉SALES表中UNIT_PRICE列的非NULL約束。下列哪個語句能完成這個操作?()

A.alter table sales modify(unit_prices null)
B.alter table sales modify(unit_prices not null)
C.alter table sales add(unit_prices null)
D.alter table sales add(unit_prices not null)