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

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -