Home > Backend Development > PHP Tutorial > SQL语句条件查询问题

SQL语句条件查询问题

WBOY
Release: 2016-06-23 13:20:21
Original
1011 people have browsed it

有关键词四个:关键词1、关键词2、关键词3、关键词4,
我要去取出数据库中一个字段中含有“关键词1”或者含有“关键词2”或者“关键词3”但是不含有“关键词4”的数据,请问SQL语句怎么写?


回复讨论(解决方案)

select * from table where (一个字段 like '%关键词1%' or 一个字段 like '%关键词2%' or 一个字段 like '%关键词3%') and 一个字段 not like '%关键词4%'
Copy after login
Copy after login

楼上正解

二楼正解。写的很棒

这么多or 可以考虑用正则了

SELECT * FROM tbl_name WHERE field REGEXP '关键词1|关键词2|关键词3'  and field NOT REGEXP '关键词4'
Copy after login
Copy after login
Copy after login

SELECT * FROM tbl_name WHERE field REGEXP '关键词1|关键词2|关键词3'  and field NOT REGEXP '关键词4'
Copy after login
Copy after login
Copy after login


学习了

SELECT * FROM tbl_name WHERE field REGEXP '关键词1|关键词2|关键词3'  and field NOT REGEXP '关键词4'
Copy after login
Copy after login
Copy after login



此方法会搜索出重复的数据

select * from table where (一个字段 like '%关键词1%' or 一个字段 like '%关键词2%' or 一个字段 like '%关键词3%') and 一个字段 not like '%关键词4%'
Copy after login
Copy after login



此方法会搜索出重复的数据

含有“关键词1” 或者含有“关键词2” 或者“关键词3”

你的需求就是如此,出现重复是正常的

含有“关键词1” 或者含有“关键词2” 或者“关键词3”

你的需求就是如此,出现重复是正常的



含有“关键词1” 或者含有“关键词2” 或者“关键词3”

你的需求就是如此,出现重复是正常的




我不像有重复的数据,应该怎么弄?
谢谢指点

试试distinct

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template