select
clas.id,clas.parent_id,clas.path,p.id,p.parent_id,p.path
from clas
left join clas p
on clas.id=p.parent_id
where !(p.path REGEXP clas.path) and clas.user_id = 231
这条语句是,我要查出一张clas表里,当表一 parentID与表二 ID相同时,找出表一中path没有包含在表二的path里的数据
这方面的详细知识可查阅