I need to check that result of expression in where clause is in range of Integers.
something lke this: select * from table where (col1 / col2 ) in (1..8). (1..8) - means range of integers.
I mean that it must be integer, not float. So that I cant use "between 1 and 8", because 1.2 will be correct.
Are there any thought?