Oracle SQL:选择必须使用字母的字符串

时间:2013-03-01 18:14:37

标签: sql oracle

如何从列中排除字符串,该字符串必须至少包含字母,而不是oracle中的所有数字?

例如,它应该能够找到

"28473a22" or "23D987w"

但请跳过

"25618792" and "845179"

谢谢。

1 个答案:

答案 0 :(得分:1)

select * from YourTable where regexp_like(col1, '[a-zA=Z]')

Example at SQL Fiddle.