164.Examine the command that is used to create a table: SQL> CREATE TABLE orders( oid NUMBER(6) PRI

本文探讨了使用SQL命令创建带有主键约束的表的过程,分析了如何在指定的表空间内创建表及其关联的唯一索引,并解释了主键约束所带来的效果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

164.Examine the command that is used to create a table:
SQL> CREATE TABLE orders(
oid NUMBER(6) PRIMARY KEY, 
odate DATE, 
ccode NUMBER(6), 
oamt NUMBER(10,2)
) TABLESPACE users;
Which two statements are true about the effect of the above command? (Choose two.)
A.A CHECK constraint is created on the OID column.
B.A NOT NULL constraint is created on the OID column.
C.The ORDERS table is the only object created in the USERS tablespace.
D.The ORDERS table and a unique index are created in the USERS tablespace.
E.The ORDERS table is created in the USERS tablespace and a unique index is created on the OID column in the SYSTEM tablespace.
答案:BD
解析:主键=unique+not null,因此会创建唯一索引,并且索引和表如果没有指定的话,他们在一个表空间中
--创建表,并指定表空间
SQL> create table wwwa(id integer primary key) tablespace TEST;
Table created.
--查看索引所在的表空间
SQL> select tablespace_name from user_indexes where table_owner='SKD';
TABLESPACE_NAME
------------------------------
TEST
--查看用户默认表空间
SQL> conn / as sysdba
Connected.
SQL> select default_tablespace from dba_users where username='SKD';
DEFAULT_TABLESPACE
------------------------------
USER2
C这里没有关系,user表空间中是否存在其他对象题目中没有说明
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值