那么有没有办法制作类似的东西:
表格1
id -> PK
table1_id -> FK
id | name | table1_id
1,'test',NULL
2,'test2',NULL
3,'sub_val1',1
4,'sub_val2',1
select a.name
, b.name
from table1 a
left join table1 b
on a.id=b.table1_id
where a.table1_id is null;
这将返回如下内容:
test,sub_val1
test,sub_val2
test2,NULL
我希望它返回如下内容:
test,NULL
test,sub_val1
test,sub_val2
test2,NULL
有办法吗?