I’ve a column with datatype decimal(7,6) but my output is having more than 7 digits How can I convert my data so that it fits into my datatype
Query **select cast(cast(1.10231634 as decimal(7,6)) / cast(0.02953322 as decimal(7,6)) as decimal(7,6))**
Exception :- **Arithmetic overflow error converting numeric to data type numeric.**
How to overcome this issue ?