题解 | #在audit表上创建外键约束,其emp_no对应employees_test表的主键id#

在audit表上创建外键约束,其emp_no对应employees_test表的主键id

http://www.nowcoder.com/practice/aeaa116185f24f209ca4fa40e226de48

-- 添加外键约束 -- 格式:在 SQLite 中, -- 除了重命名表和在已有的表中添加列,ALTER TABLE 命令不支持其他操作。 -- 重命名已有的表的 ALTER TABLE 的基本语法如下: -- ALTER TABLE database_name.table_name RENAME TO new_table_name; -- 在已有的表中添加一个新的列的 ALTER TABLE 的基本语法如下: -- ALTER TABLE database_name.table_name ADD COLUMN
-- column_name column_type; drop table if exists audit; create table audit ( emp_no int not null, create_date datetime not null, foreign key(EMP_no) references employees_test(ID));

--在MySQL当中建表时是innoDb类型是支持修改操作的 格式:Alter table 表名 add constraint FK_ID foreign key(外键字段名) REFERENCES 外表表名(主键字段名); alter table audit add constraint FK_ID foreign key (EMP_no) references employees_test(ID);

全部评论

相关推荐

像好涩一样好学:这公司我也拿过 基本明确周六加班 工资还凑活 另外下次镜头往上点儿
点赞 评论 收藏
分享
挣K存W养DOG:入职送金条全球游,路过缅甸停一下🐔
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务