当前位置: 首页 > 工具软件 > regexpp > 使用案例 >

SQL 的 REGEXP

晋西岭
2023-12-01

REGEXP正则的意思,在SQL里用上正则,极大的方便 不信请看

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里的数据

这方面的详细知识可查阅

SQL中的正则表达式(REGEXP)及通用正则表达式的基本表达式理解_梨木乔-CSDN博客_regexp sql

 类似资料: