首页上一页 1 下一页尾页 2 条记录 1/1页
请教个问题
发表在数据库答疑区
2017-03-13
是否精华
是
否
版块置顶:
是
否
sql数据库:
alter table text1
add constraint pk_text1_cno primary key (cno)为什么text后面有没有1都可以用?类似的还有这个:
alter table t_student
add constraint fk_t_student_t_group_gno
foreign key(gno) references t_group(gno) ,其中fk_t_student_t_group_gno改为fk_student_group_gno也能用。这是为什么?(这里的test1 、t_student和t_group都是表名 )