Hi ,
I have a varchar2 column in a table of mine. Here is an example :
Tablename : Flowers
ID------NAME-----------------PRICE
1-------Chrysanthemum-----------1.09
2-------Catstail---------------------1.32
3-------RedRoses-------------------6.12
4-------Pinkie's Roses--------------3.67
5-------Orchid # 451---------------5.01
6-------Dahliâ-----------------------0.90
<ignore the '-'s they are there to preserve some sort of formatting in the post thats all>
Now there are 1000s of records and i have to write a query that returns to me the records which have a 'special character' in the 'NAME' column. For eg , any name that has a character other than abcd..z (both upper and lower cases)
In the above example , Pinkie's roses (for a space and aphostophy) , Orchids (for the # and 4 5 and 1) , and dahliâ (for the â) should be returned by the query. The names are of varying lengths, and have a maximum length of 100. There are instances where the name starts with a special char too.
Any ideas for me? Thanks !
Regards,
S. Jayaram Uparna .

I have a varchar2 column in a table of mine. Here is an example :
Tablename : Flowers
ID------NAME-----------------PRICE
1-------Chrysanthemum-----------1.09
2-------Catstail---------------------1.32
3-------RedRoses-------------------6.12
4-------Pinkie's Roses--------------3.67
5-------Orchid # 451---------------5.01
6-------Dahliâ-----------------------0.90
<ignore the '-'s they are there to preserve some sort of formatting in the post thats all>
Now there are 1000s of records and i have to write a query that returns to me the records which have a 'special character' in the 'NAME' column. For eg , any name that has a character other than abcd..z (both upper and lower cases)
In the above example , Pinkie's roses (for a space and aphostophy) , Orchids (for the # and 4 5 and 1) , and dahliâ (for the â) should be returned by the query. The names are of varying lengths, and have a maximum length of 100. There are instances where the name starts with a special char too.
Any ideas for me? Thanks !
Regards,
S. Jayaram Uparna .