20170802上课随笔
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20170802上课随笔相关的知识,希望对你有一定的参考价值。
deptno int constraint emp_deptno_fk references dept(deptno))级联约束
deptno int constraint emp_deptno_fk references dept(deptno) on delete set null)或者on delete cascade//级联删除
ALTER TABLE test_phone_tab disable constraint test_phone_pk; //禁用约束
ALTER TABLE test_phone_tab enable constraint test_phone_pk; //启用约束
以上是关于20170802上课随笔的主要内容,如果未能解决你的问题,请参考以下文章