题解 | #在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);