如果一個表里面存在id和parentId,你又想同時查詢出name和parentName既可以使用下面的方式查詢哦。
SELECT a.post_Id,a.post_name,b.post_Id,b.post_name from sys_post as a
LEFT JOIN sys_post as b
on a.parent_Id=b.post_Id
where a.post_Id=4
如果一個表里面存在id和parentId,你又想同時查詢出name和parentName既可以使用下面的方式查詢哦。
SELECT a.post_Id,a.post_name,b.post_Id,b.post_name from sys_post as a
LEFT JOIN sys_post as b
on a.parent_Id=b.post_Id
where a.post_Id=4
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。