标签: sql oracle
如何从列中排除字符串,该字符串必须至少包含字母,而不是oracle中的所有数字?
例如,它应该能够找到
"28473a22" or "23D987w"
但请跳过
"25618792" and "845179"
谢谢。
答案 0 :(得分:1)
select * from YourTable where regexp_like(col1, '[a-zA=Z]')
Example at SQL Fiddle.