SQL语句问题
程序员文章站
2022-05-23 15:07:29
...
select id from table where content like '%aa%'content是保存编辑器里的内容如何在搜索的时候排除标签的里关键字如 在搜aa的时候不被搜出
回复讨论(解决方案)
SQL 不具备这个能力
//不知道是否符合你要求,试下select id from table where content like '%aa%' and content not regexp '.*aa.*\\.[jpg|png|jpeg]';