How to find values with certain number of decimal places using SQL? -
i'm trying figure out way, using sql, query values go out to, say, 5 or more decimal places. in other words, want see results have 5+ decimal places (e.g. 45.324754) - numbers before decimal irrelevant, however, still need see full number. possible? if appreciated.
assuming dbms supports floor
, datatype conversion model supports multiplication, can this:
select * table floor(num*100000)!=num*100000
this has advantage of not requiring conversion string datatype.
Comments
Post a Comment