0
Create table test1
(
    id bigint Not Null,
    name varchar(10) Not Null
    constraint pk_test primary key(id,name)
)
Create table test2
(
    Mid bigint Not Null references test1(id) ,
    MSalary varchar(10) Not Null
)

在 test2 中,我无法创建对 test1 id 的引用请帮助我.. 提前致谢!!!!

4

1 回答 1

0

您需要一个外键才能引用一个表。尝试这个:

CREATE TABLE test1
(
    id bigint NOT NULL PRIMARY KEY,
    name varchat(10) NOT NULL
)

CREATE TABLE test2
(
    Mid bigint NOT NULL,
    MSalary varchar(10) NOT NULL,
    FOREIGN KEY (Mid) REFERENCES test1(id)
)
于 2013-04-01T11:35:21.983 回答