i have two tables dept (parent table){<DEPTNO (PK),DNAME,LOC>}; emp table (child table){EMPNO (PK),ENAME......MGR_ID(REFEREN
insert into emp(...........,mgr_id) values (.....,null) --it accpts
insert into emp (...........,mgr_id) values (.....,'') --here doen't accept
and also i want know what is the difference between null and empty valu in sql server