Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Oracleのすべての数字以外に、この文字列に少なくともアルファベット文字が含まれている必要がある列から文字列をソートする方法は?
たとえば、次のことがわかるはずです。
"28473a22" or "23D987w"
でもスキップ
"25618792" and "845179"
ありがとうございました。
select * from YourTable where regexp_like(col1, '[a-zA=Z]')
SQL Fiddle の例。