Unix Technical Forum

how to display numbers with exponent

This is a discussion on how to display numbers with exponent within the MySQL General forum forums, part of the MySQL category; --> Hello again, I inserted "double" values, like : mysql> insert into t (n) values ('0.54316E+11'); then I display it ...


Go Back   Unix Technical Forum > Database Server Software > MySQL > MySQL General forum

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 07-18-2008, 09:48 AM
Gilles MISSONNIER
 
Posts: n/a
Default how to display numbers with exponent


Hello again,
I inserted "double" values, like :
mysql> insert into t (n) values ('0.54316E+11');

then I display it as :
54316000000
which is not easy to read.

Is there a way to tell Mysql to display such numbers
with exponent ?

I could not find a trick through and around
http://dev.mysql.com/doc/refman/5.0/...h-numbers.html

thanks.

_-¯-_-¯-_-¯-_-¯-_
Gilles Missonnier
IAP - gimi@iap.fr
01 44 32 81 36
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 07-18-2008, 09:48 AM
Arnulf Sortland
 
Posts: n/a
Default Re: how to display numbers with exponent

> I inserted "double" values, like :
> mysql> insert into t (n) values ('0.54316E+11');
>
> then I display it as :
> 54316000000
> which is not easy to read.


SELECT FORMAT(54316000000,0)
gives: 54,316,000,000

> Is there a way to tell Mysql to display such numbers
> with exponent ?


I have not found any, but a way around, if you use c, php, ...
is to format result from db, like:
printf('%e',54316000000) -> 5.431600e+10
printf('%.3e',54316000000) -> 5.432e+10

http://fr.php.net/printf

Also found this:
Navicat, Display formats, Numeric fields, Specifier E+:
http://www.navicat.com/win_manual/OptionFormat.html

regards
arnulf @ http://s-a.no/

> I could not find a trick through and around
> http://dev.mysql.com/doc/refman/5.0/...h-numbers.html
>
> thanks.
>
> _-¯-_-¯-_-¯-_-¯-_
> Gilles Missonnier
> IAP - gimi@iap.fr
> 01 44 32 81 36

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 09:27 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
www.UnixAdminTalk.com