我是oracle的新手,
我使用以下查询创建了两个表,
我使用以下查询创建了两个表,
CREATE TABLE employee ( emp_name VARCHAR(20) NOT NULL,street VARCHAR(50) NOT NULL,city VARCHAR(20) NOT NULL,PRIMARY KEY(emp_name) )
和
CREATE TABLE company ( comp_name VARCHAR(20) NOT NULL,PRIMARY KEY(comp_name) )
现在我正在尝试使用一些外键创建另一个表,
CREATE TABLE works ( emp_name varchar(20) NOT NULL,comp_name varchar(20) NOT NULL,salary int(10) NOT NULL,FOREIGN KEY(emp_name) REFERENCES employee(emp_name),FOREIGN KEY(comp_name) REFERENCES company(comp_name) )
我也尝试过
CREATE TABLE works ( emp_name varchar(20) NOT NULL,constraint wemployee FOREIGN KEY(emp_name) REFERENCES employee(emp_name),constraint wcompany FOREIGN KEY(comp_name) REFERENCES company(comp_name) )
但得到同样的错误.
任何人都可以告诉我,我在哪里做错了吗?
我不是oracle的专家,但你是否允许在工资中指定(10)int(10)NOT NULL?
原文链接:https://www.f2er.com/oracle/242082.html