gpt4 book ai didi

oracle - ORA-02253 : constraint specification not allowed here

转载 作者:行者123 更新时间:2023-12-02 15:08:19 26 4
gpt4 key购买 nike

create table log_table(
log_id varchar2(1000) primary key,
voter_ID varchar2(1000),
date_logged date
CONSTRAINT abc FOREIGN KEY (voter_ID) REFERENCES voters(voter_ID)
)

当我在没有日期元素的情况下创建它时,该表有效。但是当我向它添加日期元素时,它说:

ORA-02253: constraint specification not allowed here

最佳答案

The table works when i create it without date element

create table log_table(
log_id varchar2(1000) primary key,
voter_ID varchar2(1000), -- comma
CONSTRAINT abc FOREIGN KEY (voter_ID) REFERENCES voters(voter_ID)
)

你必须在约束前添加,:

create table log_table(
log_id varchar2(1000) primary key,
voter_ID varchar2(1000),
date_logged date, -- here
CONSTRAINT abc FOREIGN KEY (voter_ID) REFERENCES voters(voter_ID)
)

我还会将 log_id/voter_id 的数据类型重新考虑为 (NUMBER/INTEGER)。

关于oracle - ORA-02253 : constraint specification not allowed here,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45751511/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com