pratibha14
Technical User
- Mar 2, 2004
- 30
Hi,
I have a field named Qty which can have decimal values as well. I want to filter records where qty is in decimal (not int)
I did as follow:
select qty from table where qty like '%'||'.'||'%'
but i think this makes query slow. Is there any in-built functio (or any other way) to fetch deciaml records only?
Thanks.
I have a field named Qty which can have decimal values as well. I want to filter records where qty is in decimal (not int)
I did as follow:
select qty from table where qty like '%'||'.'||'%'
but i think this makes query slow. Is there any in-built functio (or any other way) to fetch deciaml records only?
Thanks.