SQL Server 外键约束的例子
http://hi.baidu.com/wangzhiqing999/blog/item/969f70fa84e2873e5d600821.html
SET NULL方式
1> -- 创建外键(使用 ON DELETE SET NULL 选项,删除主表的时候,同时将子表的 main_id 设置为 NULL)
2> ALTER TABLE test_sub
3> ADD CONSTRAINT main_id_cons
4> FOREIGN KEY (main_id) REFERENCES test_main ON DELETE SET NULL;
删除被参照表时置外键值为null
SQL> create table c2(col2 number constraint kk not null enable);
SQL> create table c2(col2 number not null);