|
最 先答对且答案未经编辑的puber将获得纪念章一枚(答案不可编辑但可发新贴补充或纠正),其他会员如果提供有价值的分析、讨论也可获得纪念章一枚。
每两周的优胜者可获得itpub奖励的技术图书一本。
以往旧题索引:
http://www.kz486.com/forum.php?m ... eid&typeid=1808
原始出处:
https://devgym.oracle.com/
作者:Chris Saxon
运行环境:SQLPLUS, SERVEROUTPUT已打开, 最 低版本要求:19.1
注:本题给出答案时候要求给予简要说明才能得到奖品
哪些选项可以用来取代如下的 ##REPLACE## :
create table qz_invoices (
invoice_id integer
##REPLACE##
primary key,
customer_id integer
);
insert into qz_invoices values ( null, 1 );
使得insert语句能够执行不出错?
(A)
generated as identity
(B)
generated always as identity
(C)
generated by default as identity
(D)
generated by default on null as identity
|
|