查找位置不包含逗号,句号或引用字符的员工

时间:2015-10-13 12:14:40

标签: mysql sql

有人可以告诉我如何从SQL中的“详细信息”表中找到不包含逗号或句点或引号字符的“位置”值吗?

2 个答案:

答案 0 :(得分:2)

使用not regexp

select *
from details
where location not regexp '.*[,."'].*'

答案 1 :(得分:1)

使用not like查找它们。

SELECT *
FROM details
WHERE location not like '%,%'
AND location not like '%.%'
AND location not like '%"%'