Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SQL to select Non numeric records

3696948Apr 14 2020 — edited Apr 15 2020

create table table1 as (

select '100' as dnet from dual union all

select '99.99' as dnet from dual union all

select '  12.5  ' as dnet  from dual union all

select '  .  ' as dnet from dual union all

select '  .' as dnet from dual union all

select '       .  ' as dnet from dual union all

select '       *   ' as dnet from dual union all

select '-' as dnet from dual

)

version: 18.3

how to select non numeric records ? and in my table this column has varchar data type, i don't want to change it to number.

Thanks,

Nawaz

This post has been answered by Frank Kulash on Apr 14 2020
Jump to Answer
Comments
Post Details
Added on Apr 14 2020
8 comments
3,881 views