主頁(yè) > 知識(shí)庫(kù) > mysql中格式化數(shù)字詳解

mysql中格式化數(shù)字詳解

熱門(mén)標(biāo)簽:聊城智能外呼系統(tǒng)運(yùn)營(yíng)商 沈陽(yáng)電銷外呼系統(tǒng)原理是什么 寧波企業(yè)外呼系統(tǒng)收費(fèi) 成都優(yōu)派外呼系統(tǒng) 電子地圖標(biāo)注電話 扎樣申請(qǐng)400電話 ps制作地圖標(biāo)注gif 上海智能外呼系統(tǒng)代理商 地圖標(biāo)注人員兼職

最近因?yàn)楣ぷ鞯男枨?,需要?duì)mysql中數(shù)字進(jìn)行格式化,但發(fā)現(xiàn)網(wǎng)上的資料較少,索性自己總結(jié)一下,方便自己也幫助有需要的朋友們,下面話不多說(shuō),來(lái)一起看看詳細(xì)的介紹:

一、format函數(shù):

格式化浮點(diǎn)數(shù) format(number, length);

介紹:Formats the number X to a format like '#,###,###.##', rounded to D decimal places, and returns the result as a string. If D is 0, the result has no decimal point or fractional part. D should be a constant value.

示例代碼

mysql> SELECT FORMAT(12332.123456, 4);
 -> '12,332.1235' 
mysql> SELECT FORMAT(12332.1,4);
 -> '12,332.1000' 
mysql> SELECT FORMAT(12332.2,0);
 -> '12,332'

二、rpad 和 lpad 給定位數(shù),不足補(bǔ)充自定義字符

RPAD:

Returns the string str,right-padded with the string padstr to a length of len characters. If
str is longer than len, the return value is shortened to len characters.      

示例代碼  

mysql> SELECT RPAD('hi',5,'?'); 
  -> 'hi???'
 mysql> SELECT RPAD('hi',1,'?'); 
  -> 'h'
mysql>SELET RPAD(12, 5 ,0);
  ->12000

This function is multi-byte safe.

LPAD:

Returns the string str, left-padded with the string padstr to a length of lencharacters. If str is longer than len, the return value is shortened to lencharacters.

示例代碼

mysql> SELECT LPAD('hi',4,'??');
 -> '??hi' 
mysql> SELECT LPAD('hi',1,'??');
 -> 'h' 

mysql>SELECT LPAD(12, 5 , 0)
  ->'00012'

參考:http://www.cnblogs.com/fenglie/articles/4409208.html

總結(jié)

以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,如果有疑問(wèn)大家可以留言交流,謝謝大家對(duì)腳本之家的支持。

您可能感興趣的文章:
  • mysql格式化小數(shù)保留小數(shù)點(diǎn)后兩位(小數(shù)點(diǎn)格式化)
  • mysql中格式化日期詳解
  • 詳解mysql 獲取當(dāng)前日期及格式化
  • 關(guān)于mysql數(shù)據(jù)庫(kù)格式化簡(jiǎn)單介紹
  • mysql 獲取當(dāng)前日期函數(shù)及時(shí)間格式化參數(shù)詳解

標(biāo)簽:內(nèi)江 咸寧 林芝 AXB 汕頭 朔州 宿州 三明

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《mysql中格式化數(shù)字詳解》,本文關(guān)鍵詞  mysql,中,格式化,數(shù)字,詳解,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《mysql中格式化數(shù)字詳解》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于mysql中格式化數(shù)字詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章