有人可以告诉我如何从SQL中的“详细信息”表中找到不包含逗号或句点或引号字符的“位置”值吗?
答案 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 '%"%'