国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > MySQL > 正文

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

2024-07-24 12:51:28
字體:
來源:轉載
供稿:網(wǎng)友

最近因為工作的需求,需要對mysql中數(shù)字進行格式化,但發(fā)現(xiàn)網(wǎng)上的資料較少,索性自己總結一下,方便自己也幫助有需要的朋友們,下面話不多說,來一起看看詳細的介紹:

一、format函數(shù):

格式化浮點數(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ù),不足補充自定義字符

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

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對錯新站長站的支持。

您可能感興趣的文章:

mysql格式化小數(shù)保留小數(shù)點后兩位(小數(shù)點格式化)mysql中格式化日期詳解詳解mysql 獲取當前日期及格式化關于mysql數(shù)據(jù)庫格式化簡單介紹mysql 獲取當前日期函數(shù)及時間格式化參數(shù)詳解
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 浦北县| 高平市| 车致| 宿州市| 南乐县| 石屏县| 贺兰县| 柳州市| 兴城市| 西昌市| 平定县| 溆浦县| 福泉市| 清新县| 鄯善县| 伊宁县| 陇南市| 久治县| 元阳县| 湘阴县| 安平县| 邢台市| 林芝县| 宿州市| 阳原县| 长武县| 曲阳县| 合山市| 普格县| 乌兰县| 容城县| 都兰县| 太白县| 贵州省| 龙口市| 中阳县| 伊吾县| 六安市| 永川市| 都匀市| 龙山县|