요즈음은 뜸하지만 얼마전까지만 해도 영문스팸글이 잔뜩 들어오곤 했었다...
한번에 지우는 방법이 없을까?
[한글컬럼값 들어있는 것만 지우기]
select * from tbl where field like '%[가-힣]%'
delete from tbl where field like '%[가-힣]%'
[영문컬럼값 들어있는 것만 지우기] select * from tbl where field like '%[A-Za-z]%'
delete from tbl where field like '%[A-Za-z]%' |