2015-10-13 21 views

回答

2

使用not regexp

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

使用not like找到他們。

SELECT * 
FROM details 
WHERE location not like '%,%' 
AND location not like '%.%' 
AND location not like '%"%' 
相關問題