我在 MySQL 中工作,必须编写一个选择查询。
我在四个表中有相关数据。现在,父表可能具有其子数据可能不存在于较低表中的数据。
我想编写一个查询来从所有四个表中获取数据,无论数据是否存在于子表中。
我试图编写嵌套选择和连接如下,但我没有得到数据。
select * from property p where p.Re_ID in
(select Re_id from entry e where e.Re_ID in
(select Re_id from category c where c.Re_ID in
(select id from re)))
请帮助我如何从所有 4 个表中获取数据。