显示出还没有生成子表记录的记录的方法
查询父表,显示出还没有生成子表记录的记录(父表的记录)的方法
方法1:select * from 父表 where
(select count (子表.ID) from 子表 where 子表.外键=父表.ID)=0
方法2:例如父表 t1 (id, mjbh) 子表 t2(id,t1id)--t1id是外键
select * from t1 where not exists (select 1 from t2 where t2.t1id =t1.id)