码迷,mamicode.com
首页 > 数据库 > 详细

mysql-zerofill关键字

时间:2019-03-05 11:08:17      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:cat   article   create   primary   0.00   sel   1.2   3.4   col   

zerofill位数填充

mysql> create table shop(
    -> article int(4) unsigned zerofill default 0000 not null,
    -> dealer char(20) default ‘‘ not null,
    -> price double(16,2) default 0.00 not null,
    -> primary key(article,dealer));

mysql> insert into shop values(1,A,3.45),(1,B,3.99),(2,A,10.99),(3,B,1.4
5),(3,C,1.69),(3,D,1.25),(4,D,19.95);
Query OK, 7 rows affected (0.01 sec)
Records: 7  Duplicates: 0  Warnings: 0

mysql> select * from shop;
+---------+--------+-------+
| article | dealer | price |
+---------+--------+-------+
|    0001 | A      |  3.45 |
|    0001 | B      |  3.99 |
|    0002 | A      | 10.99 |

 

mysql-zerofill关键字

标签:cat   article   create   primary   0.00   sel   1.2   3.4   col   

原文地址:https://www.cnblogs.com/darange/p/10475277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!