Exceptions handling in SQL?
- by Vineet
Is there any way to handle exceptions in sql(ORACLE 9i)?
Since I was trying to divide values of a column that contains both numbers and literals
,I need to fetch out only numbers from it ,as if it divisible by any number then its number else if contains literals it would not get divided it will generate error.
how to handle those errors?
Please suggest!!