mysql zerofill 的使用

來源:互聯網
上載者:User

標籤:www.   fill   欄位   rom   from   mys   int   意義   nbsp   

轉自:http://www.jquerycn.cn/blog/mysql/

那這個int[M]中M是什麼意義喃,在定義數值型資料類型的時候,可以在關鍵字括弧內指定整數值(如:int(M),M的最大值為255)顯示最大顯示寬度,顯示寬度M與資料所佔用空間,數值的範圍無關。 如果在定義欄位的時候指定zerofill,那麼當數值的顯示寬度小於指定的列寬度時候,則預設補充的空格用0代替。

mysql> create table int_12(id int(12) zerofill);
Query OK, 0 rows affected (0.13 sec)

mysql> desc int_12;
+-------+---------------------------+------+-----+---------+-------+
| Field | Type                      | Null | Key | Default | Extra |
+-------+---------------------------+------+-----+---------+-------+
| id    | int(12) unsigned zerofill | YES  |     | NULL    |       |
+-------+---------------------------+------+-----+---------+-------+
1 row in set (0.01 sec)

mysql> insert into int_12 (id) values(1);
Query OK, 1 row affected (0.00 sec)
mysql> select * from int_12;
+--------------+
| id           |
+--------------+
| 000000000001 |
+--------------+
1 row in set (0.00 sec)

mysql> alter table int_12 change id id int(23) zerofill;
Query OK, 0 rows affected (0.04 sec)
Records: 0  Duplicates: 0  Warnings: 0
mysql> select * from int_12 ;
+-------------------------+
| id                      |
+-------------------------+
| 00000000000000000000001 |
+-------------------------+
1 row in set (0.00 sec)

注意在navicate或者phpmyadmin中顯示資料顯示可能不正確,如果你加了zerofill,但是沒有補充0,可以到mysql命令列中看下

mysql zerofill 的使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.